getResponsiveWidget method

  1. @override
Widget getResponsiveWidget(
  1. BuildContext context,
  2. ScreenType screenType,
  3. double scale
)
override

Implementation

@override
Widget getResponsiveWidget(BuildContext context, ScreenType screenType, double scale) {
    return Transform.scale(
        scale: scale,
        child: CircularProgressIndicator(
            key : get('key'),
            value : get('value'),
            backgroundColor : get('backgroundColor'),
            color : get('color'),
            valueColor : get('valueColor'),
            strokeWidth : get('strokeWidth'),
            strokeAlign : get('strokeAlign'),
            semanticsLabel : get('semanticsLabel'),
            semanticsValue : get('semanticsValue'),
            strokeCap : get('strokeCap'),
        ),
    );
}