Fix sync indicator

This commit is contained in:
Vishnu Mohandas 2021-05-13 00:36:05 +05:30
parent 0230fa7874
commit 78b8edda26

View file

@ -20,7 +20,10 @@ class _SyncIndicatorState extends State<SyncIndicator> {
SyncStatusUpdate _event;
double _containerHeight = 48;
StreamSubscription<SyncStatusUpdate> _subscription;
static const _inProgressIcon = CircularProgressIndicator(strokeWidth: 2);
static const _inProgressIcon = CircularProgressIndicator(
strokeWidth: 2,
valueColor: AlwaysStoppedAnimation<Color>(Color.fromRGBO(45, 194, 98, 1.0)),
);
@override
void initState() {