From cbe288a3671750dc31bb10fe9d1eff31cb5aed78 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Wed, 7 Dec 2022 21:54:21 +0900 Subject: Update left/right labels Replace "L CLIMATE" / "R CLIMATE" with "Left" / "Right". Bug-AGL: SPEC-4644 Signed-off-by: Scott Murray Change-Id: I7c38460628face162e667c068fa5ed365bca2ab2 (cherry picked from commit d23c89e44ca8cd9d398288aa0a9e14914fe46845) --- lib/home_page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/home_page.dart b/lib/home_page.dart index 9986d8e..a6eb3a3 100644 --- a/lib/home_page.dart +++ b/lib/home_page.dart @@ -46,7 +46,7 @@ class MyHome_Page extends StatelessWidget { Column( children: [ Text( - 'L CLIMATE', + 'Left', style: TextStyle( fontSize: SizeConfig.fontsize*4, fontWeight: FontWeight.w700, @@ -75,7 +75,7 @@ class MyHome_Page extends StatelessWidget { Column( children: [ Text( - 'R CLIMATE', + 'Right', style: TextStyle( fontSize: SizeConfig.fontsize*4, fontWeight: FontWeight.w700, -- cgit 1.2.3-korg