如何在 AlertDialog(流畅的 UI)中扩展进度条?

发布于 2025-01-11 15:49:25 字数 1001 浏览 0 评论 0原文

我想使用 Flutter 和 Windows 的 Fluent_ui 实现 AlertDialog 。这是一个渐进式进度条,因此当我执行其他一些代码时,百分比会发生变化。我的问题是进度条直到 AlertDialog 结束才延伸。目前,进度条如下所示,进度设置为 50。

AlertDialog 内的进度条

编辑:下面是我尝试过的代码

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.

Progress bar inside AlertDialog

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终遇你 2025-01-18 15:49:25

您可以通过提供无穷大/特定宽度来将Expanded替换为SizedBox
另外,可以使用SizedBox.fromSize

ContentDialog(
  title: Text("title"),
  content: SizedBox(
    width: double.infinity,
    child: ProgressBar(value: 50, strokeWidth: 10),
  ),

输入图片此处描述

You can replace Expanded with SizedBox by providing infinity/ specific width.
Also, can be use SizedBox.fromSize.

ContentDialog(
  title: Text("title"),
  content: SizedBox(
    width: double.infinity,
    child: ProgressBar(value: 50, strokeWidth: 10),
  ),

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文