Add Status screen with ARP scanner live status display

Shows ARP scanner state (running/waiting/error) with a colored indicator
and time that ticks locally every second, refreshing from the API every 5s.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
rzuasti
2026-05-28 18:16:04 -04:00
co-authored by Claude Sonnet 4.6
parent 020c7d2c49
commit dc8f47e66d
4 changed files with 211 additions and 3 deletions
+19 -3
View File
@@ -6,6 +6,7 @@ import 'package:google_fonts/google_fonts.dart';
import 'devices/device_detail.dart';
import 'devices/device_list.dart';
import 'notifications/notification_list.dart';
import 'status/status_screen.dart';
import 'utils/pref_utils.dart';
// Routes definitions
@@ -40,6 +41,12 @@ final GoRouter router = GoRouter(
),
],
),
GoRoute(
path: '/status',
name: 'status',
builder: (context, state) => const StatusScreen(),
redirect: (context, state) => _redirectToSettings(),
),
GoRoute(
path: '/settings',
name: 'settings',
@@ -105,6 +112,11 @@ class MainShell extends StatelessWidget {
selectedIcon: Icon(Icons.devices_other),
label: Text('Devices'),
),
NavigationRailDestination(
icon: Icon(Icons.monitor_heart_outlined),
selectedIcon: Icon(Icons.monitor_heart),
label: Text('Status'),
),
NavigationRailDestination(
icon: Icon(Icons.settings_outlined),
selectedIcon: Icon(Icons.settings),
@@ -146,8 +158,9 @@ int _calculateSelectedIndex(BuildContext context) {
final location = GoRouterState.of(context).uri.path;
if (location.startsWith('/notifications')) return 0;
if (location.startsWith('/devices')) return 1;
if (location.startsWith('/settings')) return 2;
if (location.startsWith('/about')) return 3;
if (location.startsWith('/status')) return 2;
if (location.startsWith('/settings')) return 3;
if (location.startsWith('/about')) return 4;
return 0;
}
@@ -160,9 +173,12 @@ void _onDestinationSelected(int index, BuildContext context) {
context.go('/devices');
break;
case 2:
context.go('/settings');
context.go('/status');
break;
case 3:
context.go('/settings');
break;
case 4:
context.go('/about');
break;
}