summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2026-03-06 12:39:38 +0100
committerxengineering <me@xengineering.eu>2026-03-06 12:39:38 +0100
commit2ff436b069564690b204763bc135c3df9611ef0f (patch)
treee2048e3f0abecd719fa072a50dcef69091a5520f /lib
parent5b7084cf9de8f43cdc771f0b5ce92fc15d9e74af (diff)
downloadsia-app-2ff436b069564690b204763bc135c3df9611ef0f.tar
sia-app-2ff436b069564690b204763bc135c3df9611ef0f.tar.zst
sia-app-2ff436b069564690b204763bc135c3df9611ef0f.zip
Rename to class DevicesPage
The old name class UI was not adding much information and is not well suited to be differentiated to upcoming other *Page classes.
Diffstat (limited to 'lib')
-rw-r--r--lib/ui.dart6
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) {