-
Notifications
You must be signed in to change notification settings - Fork 20
Description
Hi, I have an issue with JumpinDotsIndicator Widget.
In Android the dots are like ten times faster than in iOS, is there any solution? I don't want to differentiate between Android and iOS version just for this issue.
PS: In my project is JumpingDots but I've checked and it happened to all the animations
My class code:
class LoadingScreen extends StatelessWidget {
const LoadingScreen({Key key}) : super(key: key);
@OverRide
Widget build(BuildContext context) {
return SizedBox.expand(
child: Container(
child: Padding(
padding: const EdgeInsets.all(36.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
JumpingDotsProgressIndicator(
milliseconds: 250,
fontSize: 48.0,
color: Colors.white,
),
SizedBox(height: 16.0),
// LoadingIndicator(indicatorType: Indicator.values[16]),
Text(
'Loading...,
style: kWhiteTitleStyle,
textAlign: TextAlign.center,
)
],
),
),
));
}
}