SimpelDialog:
用于设置简单的提示信息,可以显示附加的提示或操作
属性表:
属性 | 作用 |
---|---|
title | 对话框标题 |
titlePadding | 标题间隔 |
titletextStyle | 标题文字样式 |
children | 子组件选项 |
contentPadding | 子选项间隔 |
backgroundColor | 对话框背景颜色 |
shap | 对话框形状 |
elevation | 对话框阴影 |
semanticLabel | 对话框语义标签,用来给读屏软件识别 |
子组件一般配合SimpleDialog选项使用,用于将组件包装,相当于textButton,文本是左对齐的,并且padding较小
实现代码如下:
void main() => runApp(MyApp());
class MyApp extends StatelessWidget
{
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "简单对话框",