1、在pubspec.yaml中添加依赖
fluttertoast: ^3.0.1
2、页面引入
import 'package:fluttertoast/fluttertoast.dart';
3、Fluttertoast.showToast(
msg:'已经到底了',
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
backgroundColor: Colors.pink,
textColor: Colors.white,
fontSize:16.0
);
网友评论