From de740a14d9ebfd762db13b185c176045e1d1389c Mon Sep 17 00:00:00 2001 From: lhaerim Date: Fri, 27 Dec 2024 02:40:55 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=EB=88=84=EB=9D=BD=EB=90=9C=20=ED=94=8C?= =?UTF-8?q?=EB=A1=9C=ED=8C=85=20=EC=95=A1=EC=85=98=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?&=20=EC=85=94=ED=94=8C=20=EB=B2=84=ED=8A=BC=20#62?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- outfoot/lib/screens/checkpage_image.dart | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/outfoot/lib/screens/checkpage_image.dart b/outfoot/lib/screens/checkpage_image.dart index 19abdb0..b5060ae 100644 --- a/outfoot/lib/screens/checkpage_image.dart +++ b/outfoot/lib/screens/checkpage_image.dart @@ -223,14 +223,37 @@ class _CheckPageImageState extends State { color: mainBrownColor, ); } + }, + ), + ), + Positioned( + top: 60.h, + left: 300.w, + child: GestureDetector( + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => CheckPageFoot(), + ), + ); + }, + child: SvgPicture.asset( + 'assets/shuffle_icon.svg', + width: 24.w, + height: 24.h, + ), + ), +), ], ), ], ), ), + bottomNavigationBar: CustomBottomNavigationBar(selectedIndex: 1), ); }