gpt4 book ai didi

flutter - 如何更改 flutter showAboutDialog 的形状?

转载 作者:行者123 更新时间:2023-12-05 04:51:59 32 4
gpt4 key购买 nike

我调用 showAboutDialog如下:

onTap: () {
showAboutDialog(
context: context,
applicationName: SettingsScreen.nameToDisplay,
applicationLegalese: formatDateAppLegalese.format(DateTime.now()),
applicationVersion: SettingsScreen.versionToDisplay,
children: aboutBoxChildren,
);
},

如何更改该对话框的形状?我知道如何设计和提醒对话框并添加例如圆角,但这不能转移到 showAboutDialog in flutter 的情况。

children 属性添加角没有正确的效果。

有没有办法改变该对话框的形状,如果如何?

最佳答案

考虑这段代码:

onTap: () {
showDialog(
context: context,
builder: (context) {
return AboutDialog(
applicationVersion: "1.0.2",
applicationName: "Flutter app",
);
},
);
},

您应该像这样修改应用主题以更改 AboutDialog 的形状:

dialogBackgroundColor: Colors.grey,
dialogTheme: DialogTheme(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(15),
),
elevation: 5,
),

关于flutter - 如何更改 flutter showAboutDialog 的形状?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66637908/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com