Ejemplo 1: aleteo de tostadas
# 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
);
Ejemplo 2: cómo crear un brindis en 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:
//Declare a GlobalKey
GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
//Assing this key to the scaffold
Scaffold(
key: _scaffoldKey,
body: ...
)
//finally in the topmost code use this key in the following way
_scaffoldKey.showSnackBar(SnackBar(
content: Text("New Notification"),
));
Ejemplo 3: tostadas en aleteo
Scaffold.of(context).showSnackBar(SnackBar(
content: Text("Sending Message"),
));
Ejemplo 4: tostadas aleteo
dependencies:
fluttertoast: ^7.1.6
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)