defaultProgressTextStyle static method
Implementation
static TextStyle defaultProgressTextStyle(Color backgroundColor) {
final brightness = ThemeData.estimateBrightnessForColor(backgroundColor);
final textColor =
brightness == Brightness.dark ? Colors.white : Colors.black87;
return TextStyle(
color: textColor,
fontSize: 12.0,
fontWeight: FontWeight.bold,
);
}