Flutter——Widgettoast

Posted Jason Zhang~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter——Widgettoast相关的知识,希望对你有一定的参考价值。

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——Widgettoast的主要内容,如果未能解决你的问题,请参考以下文章

白色雕花(Flutter White)婚礼

Flutter笔记(三):设置白色状态栏

markdown qr_flutter加白色背景

Flutter 深色(暗黑)模式下 状态栏字体颜色为白色

Flutter Android Nav Bar 使用 Google API 以白色闪烁

Flutter webview我想在向上或向下拉动应用程序时删除白色背景