diff options
Diffstat (limited to 'lib/ui.dart')
| -rw-r--r-- | lib/ui.dart | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ui.dart b/lib/ui.dart index 1d33f32..8d5e52f 100644 --- a/lib/ui.dart +++ b/lib/ui.dart @@ -10,13 +10,13 @@ class Sia extends StatelessWidget { Widget build(BuildContext context) { return ChangeNotifierProvider<AppState>( create: (BuildContext context) => AppState(), - child: const UI(), + child: const DevicesPage(), ); } } -class UI extends StatelessWidget { - const UI({super.key}); +class DevicesPage extends StatelessWidget { + const DevicesPage({super.key}); @override Widget build(BuildContext context) { |
