I want to display a simple SnackBar inside Flutter\'s stateful widget. My application creates new instance of MaterialApp with a stateful widget ca
Scaffold.of(context).showSnackBar( SnackBar(content: Text("Thanks for using snackbar", textAlign: TextAlign.center, style: TextStyle(fontSize: 16.0, fontWeight: FontWeight.bold),), duration: Duration(seconds: 2), backgroundColor: Colors.red,) );