more status indicator improvements

This commit is contained in:
stopflock
2025-08-26 19:37:27 -05:00
parent 84e057c986
commit d56a6e8e7c
4 changed files with 63 additions and 24 deletions
+7 -1
View File
@@ -29,10 +29,16 @@ class NetworkStatusIndicator extends StatelessWidget {
break;
case NetworkStatusType.noData:
message = 'No offline data';
message = 'No tiles here';
icon = Icons.cloud_off;
color = Colors.grey;
break;
case NetworkStatusType.success:
message = 'Tiles loaded';
icon = Icons.check_circle;
color = Colors.green;
break;
case NetworkStatusType.issues:
switch (networkStatus.currentIssueType) {