How to create Toast in Flutter?

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

    Import the lib

    fluttertoast: 3.1.3

    Use like below

    Fluttertoast.showToast(
    msg: "Hello world",
    textColor: Colors.white,
    toastLength: Toast.LENGTH_SHORT,
    timeInSecForIos: 1,
    gravity: ToastGravity.BOTTOM,
    backgroundColor: Colors.indigo,
    

    );

提交回复
热议问题