I want to use Snackbar
with root Scaffold
widget to show many messages from different places like this:
_scaffoldKey.currentState.showSnackBar(SnackBar(
content: Text('$message'),
backgroundColor: Colors.green,
));
But when I have some widget(e.g. another Scaffold
which I can't use) which fully above my root widget, I don't see the Snackbar
.
So, how can I show the Snackbar
above all widgets?