buildProgressIcon method

Widget buildProgressIcon(
  1. BuildContext context,
  2. IconData icon, {
  3. bool isCurrent = false,
  4. 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);
}