飘动 |自定义循环进度指示器

FLUTTER | Custom Circular Progress Indicator

如何在 Flutter 中制作如下图所示的自定义循环进度指示器?开箱即用的不允许在中心添加文本。

Screenshot of Example

我想你有两种方法。

首先将CircularProgressIndicatorText小部件放入Stack中,然后根据需要放置它们(Text居中,CircularProgressIndicator覆盖所有堆栈space). Stack小部件是这里的关键点,让您了解...

第二种更灵活的方法是使用 CustomPaint Widget 来执行此操作。 link 将帮助您实现目标... https://medium.com/@NPKompleet/creating-an-analog-clock-in-flutter-i-68def107d9f4