LinearProgressIndicator Flutter Usage

前端 未结 4 1576
天涯浪人
天涯浪人 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 11:52

    Try this :

    Instead of

    value: _controller.value,
    

    Use

    value: _controller.value ?? 0.0,
    

    You can also use the package that I created , it has animation:

    https://pub.dartlang.org/packages/percent_indicator

提交回复
热议问题