Flutter 中的 AlertDialog 小部件:全面指南
在Flutter中,AlertDialog
是一个小部件,用于弹出对话框,它可以用于要求用户进行某些操作,如确认删除或输入信息等。
以下是一个简单的AlertDialog
的示例代码:
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Flutter Demo'),
),
body: Center(
child: RaisedButton(
child: Text('Show Dialog'),
onPressed: () {
showDialog(
context: context,
builder: (context) {
return AlertDialog(
title: Text('AlertDialog Title'),
content: Text('This is an example alert dialog.'),
actions: <Widget>[
FlatButton(
child: Text('Cancel'),
onPressed: () {
Navigator.of(context).pop();
},
),
FlatButton(
child: Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
},
),
),
),
);
}
}
在这个例子中,当用户点击按钮时,会弹出一个带有标题和内容的AlertDialog
。用户可以点击"Cancel"或"OK"按钮关闭对话框。这是一个基本的AlertDialog
使用案例,可以根据具体需求进行定制。
评论已关闭