getResponsiveWidget method
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'),
),
);
}