如何在 AlertDialog(流畅的 UI)中扩展进度条?
我想使用 Flutter 和 Windows 的 Fluent_ui 实现 AlertDialog
。这是一个渐进式进度条,因此当我执行其他一些代码时,百分比会发生变化。我的问题是进度条直到 AlertDialog
结束才延伸。目前,进度条如下所示,进度设置为 50。
编辑:下面是我尝试过的代码
showDialog(
context: context,
builder: (context) {
return ContentDialog(
title: Text(title),
content: const Expanded(
child: ProgressBar(value: 50, strokeWidth: 10),
),
actions: [
const SizedBox(),
Button(
style: MyButtonStyles.dialogYes(),
child: const Text('OK', style: TextStyle(fontSize: 16.0)),
onPressed: () {
Navigator.pop(context);
}),
],
);
},
);
I would like to implement an AlertDialog
using Flutter and fluent_ui for Windows. This is a progressive progress bar, so the percentage will change when some of my other code executes. My problem is that the Progress Bar does not extend until the end of the AlertDialog
. Currently, the progress bar looks like below, set at progress of 50.
Edit: Below is the code I have tried
showDialog(
context: context,
builder: (context) {
return ContentDialog(
title: Text(title),
content: const Expanded(
child: ProgressBar(value: 50, strokeWidth: 10),
),
actions: [
const SizedBox(),
Button(
style: MyButtonStyles.dialogYes(),
child: const Text('OK', style: TextStyle(fontSize: 16.0)),
onPressed: () {
Navigator.pop(context);
}),
],
);
},
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过提供
无穷大
/特定宽度来将Expanded
替换为SizedBox
。另外,可以使用
SizedBox.fromSize
。You can replace
Expanded
withSizedBox
by providinginfinity
/ specific width.Also, can be use
SizedBox.fromSize
.