美文网首页
【Android进阶】flutter-alertdialog

【Android进阶】flutter-alertdialog

作者: 小康 | 来源:发表于2022-01-05 20:16 被阅读0次
    class MyAlertDialog extends StatelessWidget {
      @override
      Widget build(BuildContext context) {
        return MaterialApp(
          title: 'AlertDialog组件示例',
          home: Scaffold(
            appBar: AppBar(
              title: Text('AlertDialog组件示例'),
            ),
            body: Center(
              child: AlertDialog(
                title: Text('提示'), //对话框标题
                content: SingleChildScrollView(
                  //对话框内容部分
                  child: ListBody(
                    children: <Widget>[
                      Text('是否要删除?'),
                      Text('一旦删除数据不可恢复!'),
                    ],
                  ),
                ),
                actions: <Widget>[
                  FlatButton(
                    child: Text('确定'),
                    onPressed: () {},
                  ),
                  FlatButton(
                    child: Text('取消'),
                    onPressed: () {},
                  ),
                ],
              ),
            ),
          ),
        );
      }
    }
    

    相关文章

      网友评论

          本文标题:【Android进阶】flutter-alertdialog

          本文链接:https://www.haomeiwen.com/subject/eeykcrtx.html