From f7d640cb46e31c7edcb8a204c58dc7a142abf250 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Tue, 12 Dec 2023 15:05:14 +0000 Subject: Revert "flutter-dashboard: fix pixel overflow" This reverts commit d5f533481ed40ee2afb7f88911b59f5d464c959a. Reason for revert: This changes the look of the application for the worse at 1920x1080, which is the only resolution we support for the demo images. Change-Id: I112ab23ade98aae703c3f3a1f79ad06492dde195 Signed-off-by: Scott Murray --- lib/HomePage.dart | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/HomePage.dart b/lib/HomePage.dart index e9861f6..36d8381 100644 --- a/lib/HomePage.dart +++ b/lib/HomePage.dart @@ -84,9 +84,7 @@ class _HomePageState extends ConsumerState { flex: 11, child: Container( //color: Colors.red, - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceAround, - children: [ + child: Row(children: [ Spacer(), Column( mainAxisAlignment: MainAxisAlignment.spaceEvenly, @@ -102,11 +100,9 @@ class _HomePageState extends ConsumerState { height: SizeConfig.safeBlockVertical * 10), ], ), - Expanded(child: Image.asset( 'images/car_img.png', ), - ), Column( mainAxisAlignment: MainAxisAlignment.spaceEvenly, crossAxisAlignment: CrossAxisAlignment.center, -- cgit 1.2.3-korg