How to create Toast in Flutter?

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

    you can use this package : toast

    add this line to your dependencies

    toast: ^0.1.5
    

    then use it like this :

    import 'package:toast/toast.dart';
    Toast.show("Toast plugin app", context, duration: Toast.LENGTH_SHORT, gravity:  Toast.BOTTOM);
    

提交回复
热议问题