feat: Integrate sync status indicators in app title bar and home screen

This commit is contained in:
2026-05-18 19:17:59 +02:00
parent 989d307fd6
commit 0e144cf7fd
5 changed files with 34 additions and 48 deletions
+8 -1
View File
@@ -21,7 +21,14 @@ class SyncStatusIndicator extends StatelessWidget {
Widget build(BuildContext context) {
switch (status) {
case SyncStatus.idle:
return const SizedBox.shrink();
return const Tooltip(
message: 'Sincronización en espera',
child: Icon(
Icons.cloud_outlined,
size: 16,
color: Colors.white38,
),
);
case SyncStatus.syncing:
return const Tooltip(