buildProgressIcon method
Widget
buildProgressIcon(
- BuildContext context,
- IconData icon, {
- bool isCurrent = false,
- double size = 28,
Implementation
Widget buildProgressIcon(BuildContext context, IconData icon, {bool isCurrent = false, double size = 28}) {
return Container(
width: 28,
height: 28,
child: Icon(icon, color: isCurrent ? GlThemeColors.get(context).primary : GlThemeColors.get(context).grey, size: size),
);
//return Icon(icon, color: isCurrent ? GlThemeColors.get(context).primary : GlThemeColors.get(context).grey, size: size);
}