How to create Toast in Flutter?

前端 未结 28 770
小蘑菇
小蘑菇 2020-12-12 10:46

Can I create something similar to Toasts in Flutter? Just a tiny notification window that is not directly in the face of the user and does not lock or fade the view behind i

28条回答
  •  执笔经年
    2020-12-12 11:29

    It's quite simple,

    We just have to install the flutter toast package. Refer the following documentation: https://pub.dev/packages/fluttertoast

    In the installing tab you will get the dependency which you have to paste it in the pubspec.yaml andthen install.

    After this just import the package:

    import 'package:fluttertoast/fluttertoast.dart';

    Similar to above line.

    And then by using FlutterToast class you can use your fluttertoast.

    You're Done!!!

提交回复
热议问题