Bunch of updates, next up is token pipeline

This commit is contained in:
2025-12-22 20:26:33 -06:00
parent e0a41761ec
commit bd9ce4022f
12 changed files with 582 additions and 167 deletions

View File

@@ -140,7 +140,7 @@ class _DeviceScreenState extends State<DeviceScreen> {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => PeripheralScreen(peripheralId: peripheral['id'],
builder: (context) => PeripheralScreen(deviceName: deviceName, peripheralId: peripheral['id'],
peripheralNum: peripheral['port'], deviceId: widget.deviceId,),
),
).then((_) { populatePeripherals(); });
@@ -220,7 +220,7 @@ class _DeviceScreenState extends State<DeviceScreen> {
),
const SizedBox(height: 20),
DropdownButtonFormField<int>(
value: port,
initialValue: port,
decoration: const InputDecoration(
labelText: 'Hub Port',
border: OutlineInputBorder(),