SyncButton: Use cloud download/upload instead of arrows

This commit is contained in:
Vishesh Handa
2020-03-30 13:04:28 +02:00
parent 577b73ff3c
commit a5fcb19d70

View File

@ -49,13 +49,13 @@ class _SyncButtonState extends State<SyncButton> {
}
if (appState.syncStatus == SyncStatus.Pulling) {
return BlinkingIcon(
icon: Icon(Icons.arrow_downward),
icon: Icon(Icons.cloud_download),
);
}
if (appState.syncStatus == SyncStatus.Pushing) {
return BlinkingIcon(
icon: Icon(Icons.arrow_upward),
icon: Icon(Icons.cloud_upload),
);
}