How to create Toast in Flutter?

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

    Step 1:

    dependencies:

    flutter_just_toast: ^1.0.1
    

    Step 2:

    import 'package:flutter_just_toast/flutter_just_toast.dart';
    

    Step 3:

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

提交回复
热议问题