From e21709c9601209e26d09dea0a45e37f0636bb605 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Mon, 21 Nov 2022 02:30:35 -0500 Subject: Rework for use in Flutter demo platform image Changes: - Converted to portrait orientation. - Application enumeration and launching+activation enabled via use of applaunchd gRPC API and agl-shell protocol platform channel plugin in the embedder. - Previous dashboard, hvac, media, etc. pages disabled. Some of the code has been kept for potential reuse. - Clock widget tweaked to fit in portrait mode navigation bar, and take text color argument. - Bluetooth, wifi, and phone signal icons mocked up in navigation bar. Known issues: - The bottom panel area is static at present, support for popping up a volume control slider like the Qt demo is planned as an addition. - The path to implementing connection and signal strength indications is currently a bit hazy, it is possible that flutter-dbus might be the simplest stopgap. - State management has been kept basic, as there are a couple of places where using provider or riverpod seems like perhaps an overcomplication. This will be reviewed when KUKSA.val support is integrated for the volume slider. - Some of the layout sizing is a bit ad hoc, and it is not clear if the previous layout helper class is actually worth keeping or not. This should be reviewed when time permits. Bug-AGL: SPEC-4611 Signed-off-by: Scott Murray Change-Id: Ib486b1fd92047f6c1ff1cd9569f49e3ccaf3269d --- lib/main.dart | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'lib/main.dart') diff --git a/lib/main.dart b/lib/main.dart index e85c7f6..c09f328 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -9,17 +9,21 @@ class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { + const navBarColor = const Color(0xff181818); + const navBarIconColor = Colors.white; + return MaterialApp( - title: 'Flutter Homescreen', + title: 'Homescreen', theme: ThemeData( - primarySwatch: Colors.blue, - brightness: Brightness.light, - ), - darkTheme: ThemeData( - brightness: Brightness.dark, - /* dark theme settings */ + navigationBarTheme: NavigationBarThemeData( + backgroundColor: navBarColor, + labelTextStyle: MaterialStateProperty.all(const TextStyle( + color: navBarIconColor, + )), + iconTheme: MaterialStateProperty.all(const IconThemeData( + color: navBarIconColor, + ))), ), - themeMode: ThemeMode.dark, home: Homescreen(), ); } -- cgit 1.2.3-korg