mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
Add SSDP/UPnP scanner to frontend status displays
Surface the SSDP/UPnP scanner alongside ARP and mDNS: a dedicated card on the Status screen and a row in the consolidated Status card on Home. Mirrors the existing mDNS implementation and reuses the generic ScannerStatusCard and PolledValue infrastructure. Also maps the 'Ssdp' device-event scanner to the "SSDP/UPnP" label. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
e8159f2b40
commit
440959b10d
@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
|
||||
|
||||
import '../widgets/arp_scanner_card.dart';
|
||||
import '../widgets/mdns_scanner_card.dart';
|
||||
import '../widgets/ssdp_scanner_card.dart';
|
||||
|
||||
class StatusScreen extends StatelessWidget {
|
||||
const StatusScreen({super.key});
|
||||
@@ -16,6 +17,8 @@ class StatusScreen extends StatelessWidget {
|
||||
const ArpScannerCard(),
|
||||
const SizedBox(height: 8),
|
||||
const MdnsScannerCard(),
|
||||
const SizedBox(height: 8),
|
||||
const SsdpScannerCard(),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user