From 2ff436b069564690b204763bc135c3df9611ef0f Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 6 Mar 2026 12:39:38 +0100 Subject: 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. --- lib/ui.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/ui.dart') 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( 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) { -- cgit v1.3