Я только что прошел обновление флаттера, и все мои зависимости и CupertinoActivityIndicator () больше не работают, ie он не отображается и не оживляет
Кто-нибудь знает, в чем причина?
Вот мой код
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,
);
}
}
}
спасибо