diegoveloper / flutter_percent_indicator

Flutter percent indicator library
BSD 2-Clause "Simplified" License
679 stars 206 forks source link

progressColor not show in 4.0.0 version #143

Closed Hendriyawan closed 2 years ago

Hendriyawan commented 2 years ago

Hi, please correct me, what wrong with my code, the progressColor is not working

LinearPercentIndicator( width: MediaQuery.of(context).size.width / 2 1.1, animation: true, animationDuration: 1000, lineHeight: 17, center: Text( (widget.course.percent 100).toString() + "%", style: GoogleFonts.montserrat( color: Colors.black45, ), ), backgroundColor: Colors.grey[200], progressColor: Colors.blue, // ignore: deprecated_member_use barRadius: const Radius.circular(20), ),

diegoveloper commented 2 years ago

What's the percent value?

Hendriyawan commented 2 years ago

hi, the percent is double value

Hendriyawan commented 2 years ago

ah, solved, sorry, i forgot to add percent property, thank you