I have just went through an upgrade of flutter and all my dependencies and CupertinoActivityIndicator() does not work anymore, ie it does not show up and animate
Does anyone know what is the reason?
Here is my code
class LittleProgressIndicator extends StatelessWidget {
@override
Widget build(BuildContext context) {
if (!appData.isIOS) {
return CircularProgressIndicator(
backgroundColor: kColorPrimary,
valueColor: AlwaysStoppedAnimation<Color>(kColorAccent),
);
} else {
return CupertinoActivityIndicator(
animating: true,
);
}
}
}
thanks