我有一个带有 FAB 的主屏幕,按下它时我想显示一个对话框供用户输入。
目前我正在使用showDialog()SimpleDialog。
showDialog(
context: context,
builder: (BuildContext context) {
return SimpleDialog(
title: NormalText('New Counter Item'),
contentPadding: EdgeInsets.fromLTRB(24.0, 0.0, 24.0, 24.0),
children: <Widget>[
Container(
...
)
],
);
}
);
Run Code Online (Sandbox Code Playgroud)
但是,我似乎无法用它自定义几乎任何东西(更小、弯角并位于屏幕下方)。AlertDialog似乎是一样的。
反正有自定义这些属性吗?