mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-28 18:03:14 +08:00
SyncButton: Use cloud download/upload instead of arrows
This commit is contained in:
@ -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),
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user