call set state inside alertdialog flutter code example
Example 1: flutter alertdialog
Future _showMyDialog() async {
return showDialog(
context: context,
barrierDismissible: false, // user must tap button!
builder: (BuildContext context) {
return AlertDialog(
title: Text('AlertDialog Title'),
content: SingleChildScrollView(
child: ListBody(
children: [
Text('This is a demo alert dialog.'),
Text('Would you like to approve of this message?'),
],
),
),
actions: [
TextButton(
child: Text('Approve'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
}
Example 2: flutter how to setstate over alertdialog
showDialog(
context: context,
builder: (context) {
String contentText = "Content of Dialog";
return StatefulBuilder(
builder: (context, setState) {
return AlertDialog(blah blah blah....)})})