Flutter——Widget(3)、toast

Flutter中实现安卓中的弹toast提示的功能。

  1. pubspec.yaml文件的dependencies中添加库fluttertoast: ^2.1.1
  2. pubspec.yaml文件中右上角处点击Packages get
  3. 在需要使用的文件内导入包import 'package:fluttertoast/fluttertoast.dart';
  4. 使用,示例如下:
Fluttertoast.showToast(
   msg: "Hello Jason",
   toastLength: Toast.LENGTH_SHORT, // 默认为LENGTH_SHORT,可改为LENGTH_LONG
   gravity: ToastGravity.BOTTOM, // 默认为bottom,显示在底部,可改为居中或头部
   timeInSecForIos: 2, // iOS系统上显示时长,默认为1,单位s
   backgroundColor: Colors.red, // 背景色,默认为黑色
   textColor: Colors.white); // 文字颜色,默认为白色

你可能感兴趣的:(Flutter,Flutter笔记)