diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-12-20 14:38:33 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-12-29 04:22:22 +0000 |
commit | a0da726bdb788e6066ab8fd58bb993fe63ad52ac (patch) | |
tree | 2c47f4bbcce9a1a3e71f41f9feec29b9c5d6d12e /lib/screen/home.dart | |
parent | e440ec331e7d55cdf2e666d45f63c05571ecc609 (diff) |
UI tweaks
Changes:
- Changed inactive turn signal and notification icons' color to
Colors.grey.shade600 to make them more visible.
- Reworked initial connection popup position and size to have it at
the bottom of the screen where it will not get covered up by the
streaming navigation receiver window.
- Tweaked the position of the navigation widget up a bit higher,
as it seemed a bit low. Even though we will not be using it in
the near term, it seemed worthwhile to do this for the future.
Bug-AGL: SPEC-4653
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I334ef4defcfc8ce138c3900355e3c83ca5a0ac05
Diffstat (limited to 'lib/screen/home.dart')
-rw-r--r-- | lib/screen/home.dart | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/screen/home.dart b/lib/screen/home.dart index 70bc5c6..4cfa770 100644 --- a/lib/screen/home.dart +++ b/lib/screen/home.dart @@ -192,7 +192,7 @@ class Home extends ConsumerWidget { Padding(
padding: EdgeInsets.fromLTRB(
calcPadding(60, screenHeight),
- calcPadding(10, screenHeight),
+ 0,
calcPadding(60, screenHeight),
0),
child: Row(
@@ -225,9 +225,13 @@ class Home extends ConsumerWidget { child: (vehicle.isSteeringInfo)
? const NavigationHome()
: Padding(
- padding: EdgeInsets.all(
- (48.0 * screenHeight) /
- 720),
+ padding: EdgeInsets.symmetric(
+ vertical:
+ (36.0 * screenHeight) /
+ 720,
+ horizontal:
+ (48.0 * screenHeight) /
+ 720),
child: Image.asset(
"images/logo_agl.png",
width:
|