toast in flutter example
Example 1: toast flutter
# add this line to your dependencies
fluttertoast: ^7.1.1
Fluttertoast.showToast(
msg: "This is Center Short Toast",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
timeInSecForIosWeb: 1,
backgroundColor: Colors.red,
textColor: Colors.white,
fontSize: 16.0
);
Example 2: how to create a toast in flutter
You can show material design snackbars using the following code:
Scaffold.of(context).showSnackBar(SnackBar(
content: Text("New Notification"),
));
In some cases, this will throw an error and it can be resolved using a workaround:
GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
Scaffold(
key: _scaffoldKey,
body: ...
)
_scaffoldKey.showSnackBar(SnackBar(
content: Text("New Notification"),
));
Example 3: toast in flutter
Scaffold.of(context).showSnackBar(SnackBar(
content: Text("Sending Message"),
));