当达到某个值时,是否可以更改为 CircularProgressIndicator 的 valueColor。
例如:
绿色,如果值 < 30
橙色,如果值 < 60
红色,如果值 > 60
谢谢您的帮助!:)
CircularProgressIndicator(
strokeWidth: 6,
value: amountSpent / budget,
backgroundColor: UiColors.backgroundColor,
valueColor: AlwaysStoppedAnimation<Color>(
UiColors.categoryColors[1]),
),