Flutter 提示对话框组件(AlertDialog),AlertDialog
组件比SimpleDialog
对话框又复杂一些。不仅仅有提示内容,还有一些操作按钮,如确定和取消等,内容部分可以用SingleChildScrollView
进行包裹。组件的属性及描述如表所示:
编写一个删除确认的示例,完整的示例代码如下:
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp 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: () {},
),
],
),
),
),
);
}
}
上述示例代码的视图展现大致如图所示:
酷客教程相关文章:
评论前必须登录!
注册