【Flutter】CircularProgressIndicatorの色を変更する

#Flutter#dart#ハッチアウトスクール
CircularProgressIndicator(
backgroundColor: Colors.red,
valueColor: AlwaysStoppedAnimation<Color>(Colors.green)
)
このようにプロパティを変更すると、色を変えることができます。
CircularProgressIndicator(
backgroundColor: Colors.red,
valueColor: AlwaysStoppedAnimation<Color>(Colors.green)
)
このようにプロパティを変更すると、色を変えることができます。