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

@@ -159,17 +159,20 @@ class _DevicesMenuState extends State<DevicesMenu> {
Widget build(BuildContext context) {
return Scaffold(
body: deviceList ?? const Center(child: CircularProgressIndicator()),
floatingActionButton: FloatingActionButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => AddDevice()),
);
},
foregroundColor: Theme.of(context).highlightColor,
backgroundColor: Theme.of(context).primaryColorDark,
child: Icon(Icons.add),
),
floatingActionButton: Container(
padding: EdgeInsets.all(25),
child:FloatingActionButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => AddDevice()),
);
},
foregroundColor: Theme.of(context).highlightColor,
backgroundColor: Theme.of(context).primaryColorDark,
child: Icon(Icons.add),
),
)
);
}
}