How to create Toast in Flutter?

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

    Add flutter_just_toast to your dependencies in your Pubspecs.yaml

    dependencies:

    flutter_just_toast: ^1.0.1
    

    Next import package into your class:

    import 'package:flutter_just_toast/flutter_just_toast.dart';
    

    Implement Toast with message

    Toast.show( message: "Your toast message", 
        duration: Delay.SHORT, 
        textColor: Colors.black);
    

提交回复
热议问题