fix(app): 홈에서 앨범 상세 이동 시 뒤로가기 안 되는 버그 수정

context.go() → context.push()로 변경.
go()는 네비게이션 스택을 교체하므로 뒤로가기가 불가했음.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-04-04 13:11:18 +09:00
parent aa750b19d4
commit 45e69a9b9c

View file

@ -411,7 +411,7 @@ class _HomeViewState extends ConsumerState<HomeView> 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,