From 45e69a9b9cc80051c5b4866e1206379f7147055e Mon Sep 17 00:00:00 2001 From: caadiq Date: Sat, 4 Apr 2026 13:11:18 +0900 Subject: [PATCH] =?UTF-8?q?fix(app):=20=ED=99=88=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=95=A8=EB=B2=94=20=EC=83=81=EC=84=B8=20=EC=9D=B4=EB=8F=99=20?= =?UTF-8?q?=EC=8B=9C=20=EB=92=A4=EB=A1=9C=EA=B0=80=EA=B8=B0=20=EC=95=88=20?= =?UTF-8?q?=EB=90=98=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit context.go() → context.push()로 변경. go()는 네비게이션 스택을 교체하므로 뒤로가기가 불가했음. Co-Authored-By: Claude Opus 4.6 (1M context) --- app/lib/views/home/home_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/views/home/home_view.dart b/app/lib/views/home/home_view.dart index b7fcf99..466707e 100644 --- a/app/lib/views/home/home_view.dart +++ b/app/lib/views/home/home_view.dart @@ -411,7 +411,7 @@ class _HomeViewState extends ConsumerState with TickerProviderStateMix child: Transform.translate( offset: itemSlide.value, child: GestureDetector( - onTap: () => context.go('/album/${album.folderName}'), + onTap: () => context.push('/album/${album.folderName}'), child: Container( decoration: BoxDecoration( color: Colors.white,