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
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,
);