1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| RaisedButton( child: Text("SimpleDialog"), onPressed: () { showDialog( context: context, builder: (builder) { return SimpleDialog( title: Text('提示'), children: <Widget>[ Container(height: 80, alignment: Alignment.center, child: Text('确认删除吗?'),), Divider(height: 1,), FlatButton(child: Text('取消'), onPressed: () {Navigator.of(context).pop('cancel');},), Divider(height: 1,), FlatButton(child: Text('确认'), onPressed: () {Navigator.of(context).pop('ok');}, ), ], ); }); })
|