LinearProgressIndicator Flutter Usage

前端 未结 4 1629
天涯浪人
天涯浪人 2021-02-20 11:06

I am learning Flutter allthought i dont know if it is right decition or not. Any way i want to use LinearProgressIndicator Component from Material Librery but i didnt get how t

4条回答
  •  生来不讨喜
    2021-02-20 12:01

    You can use AlwaysStoppedAnimation simply for valueColor,

    LinearProgressIndicator(
        backgroundColor: Colors.red,
        valueColor: AlwaysStoppedAnimation(Colors.amber,),
        value: 0.8,
    ),
    

提交回复
热议问题