Posts

Alert Dialog in flutter

Image
  - An alert dialog informs the user about situations that requires acknowledgement.  -An alert dialog has an optional title and an optional list of actions. -The title is displayed over the content and the action below the content.                                                                                      We implement  AlertDialog() in following steps: 1. Create Scaffold                    Scaffold( appBar: AppBar ( title:  Text ( "Alert Dialog " ), ), body: RaisedButton ( onPressed:(){ return   AlertDialogPage (context); // completed in...