如何在 flutter 中编写进度条以设置在线课程应用程序的完成状态

发布于 2025-01-11 19:31:03 字数 74 浏览 0 评论 0原文

我正在用 flutter 开发一个在线课程应用程序,我需要根据学生完成课程的情况编写进度条,我该如何在 flutter 中做到这一点?

I'm developing an online course app in flutter, and I need to code a progress bar depend on students completion of course, how do I do that in flutter?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

海风掠过北极光 2025-01-18 19:31:03

这是一个非常广泛的问题。具体来说,您可以使用 LinearProgressIndicator 来显示进度。将进度存储在总体小部件的 State 中,并在部分完成后更新它,这应该相应地更新进度栏。

https://api.flutter.dev/flutter/material/LinearProgressIndicator-class。 :

然后你可以想象这样的事情

// In a stateful widget
double progress = 0.0;

Widget build(BuildContext context) {
  return Column(children: [
    LinearProgressIndicator(progress: progress),
    Expanded(
      child: MyCourseView(onMadeProgress: (newProgress) {
        // Using setState ensures this widget rebuilds
        setState(() => progress = newProgress);
      }),
    ),
  ]);
}

This is a very broad question. Concretely, you can use a LinearProgressIndicator to show the progress. Store the progress inside the State of the overarching widget, and update it after a part is completed, which should update the progress bar accordingly.

https://api.flutter.dev/flutter/material/LinearProgressIndicator-class.html

You can then imagine something like this:

// In a stateful widget
double progress = 0.0;

Widget build(BuildContext context) {
  return Column(children: [
    LinearProgressIndicator(progress: progress),
    Expanded(
      child: MyCourseView(onMadeProgress: (newProgress) {
        // Using setState ensures this widget rebuilds
        setState(() => progress = newProgress);
      }),
    ),
  ]);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文