Snack Bar
When I tried to use solution with using ScaffoldState
object (suggested by others), I got a warning that it is deprecated:
'showSnackBar' is deprecated and shouldn't be used. Use ScaffoldMessenger.showSnackBar. This feature was deprecated after v1.23.0-14.0.pre..
Using ScaffoldMessenger
works as expected:
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(content: Text("My amazing message! O.o")));
Example: