包地址: https://pub.dev/packages/fluttertoast
fluttertoast 的简单封装
class ToastUtils{
/// 显示toast
///[name] lottie名称
static show(String name) {
Fluttertoast.showToast(
msg: name,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 1,
backgroundColor: Colors.black,
textColor: Colors.white,
fontSize: 16.0
);
}
}