diff options
| author | xengineering <me@xengineering.eu> | 2026-03-06 12:39:38 +0100 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-03-06 12:39:38 +0100 |
| commit | 2ff436b069564690b204763bc135c3df9611ef0f (patch) | |
| tree | e2048e3f0abecd719fa072a50dcef69091a5520f /lib/ui.dart | |
| parent | 5b7084cf9de8f43cdc771f0b5ce92fc15d9e74af (diff) | |
| download | sia-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/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) { |
