How to create Toast in Flutter?

前端 未结 28 768
小蘑菇
小蘑菇 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:25

    fluttertoast: ^3.1.3

    import 'package:fluttertoast/fluttertoast.dart';
    
    Fluttertoast.showToast(
            msg: "This is Center Short Toast",
            toastLength: Toast.LENGTH_SHORT,
            gravity: ToastGravity.CENTER,
            timeInSecForIos: 1,
            backgroundColor: Colors.red,
            textColor: Colors.white,
            fontSize: 16.0
        );
    

提交回复
热议问题