Display SnackBar in Flutter

前端 未结 15 1489
一个人的身影
一个人的身影 2020-12-04 19:28

I want to display a simple SnackBar inside Flutter\'s stateful widget. My application creates new instance of MaterialApp with a stateful widget ca

15条回答
  •  再見小時候
    2020-12-04 20:01

    You can do this in three simple steps.

    1. Make sure you have a key for scaffold. You can create that by writing the below code:

      final _scaffoldKey = GlobalKey();
      

    2.Now you have to mention this key inside your Scaffold, by writing the below line inside scaffold:

    key:_scaffoldKey,
    
    1. Now you can show snackbar by writing:

      final snackBar=SnackBar(
                            content: Text('Your password has been changed successfully'),
                          );
                          _scaffoldKey.currentState.showSnackBar(snackBar);
      

提交回复
热议问题