chore(app): 추천 기록 탭 대응과 스플래시 대기 제한

- RecommendationRecordCard에 onTap 콜백을 추가하고 카드 전체를 InkWell로 감싸 탭 제스처를 받을 수 있게 함\n- _navigateToHome에서 권한 요청 Future를 5초 타임아웃으로 감싸 스플래시에서 무한 대기를 막고, 완료 여부와 관계없이 홈으로 이동하도록 정리\n- 변경 의도 주석을 추가해 동작 맥락을 명시
This commit is contained in:
JiWoong Sul
2025-12-04 16:35:27 +09:00
parent 2857fe1cb6
commit 99ad8a3bd5
2 changed files with 140 additions and 124 deletions

View File

@@ -10,11 +10,15 @@ class RecommendationRecordCard extends ConsumerWidget {
final VoidCallback onConfirmVisit;
final VoidCallback onDelete;
/// 카드 전체 탭(tap) 시 실행할 콜백.
final VoidCallback? onTap;
const RecommendationRecordCard({
super.key,
required this.recommendation,
required this.onConfirmVisit,
required this.onDelete,
this.onTap,
});
String _formatTime(DateTime dateTime) {
@@ -43,6 +47,9 @@ class RecommendationRecordCard extends ConsumerWidget {
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
child: InkWell(
onTap: onTap,
borderRadius: BorderRadius.circular(12),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
@@ -101,7 +108,9 @@ class RecommendationRecordCard extends ConsumerWidget {
),
const SizedBox(width: 4),
Text(
_formatTime(recommendation.recommendationDate),
_formatTime(
recommendation.recommendationDate,
),
style: AppTypography.caption(isDark),
),
],
@@ -119,7 +128,8 @@ class RecommendationRecordCard extends ConsumerWidget {
Expanded(
child: Text(
'추천만 받은 상태입니다. 방문 후 확인을 눌러 주세요.',
style: AppTypography.caption(isDark).copyWith(
style: AppTypography.caption(isDark)
.copyWith(
color: Colors.orange,
fontWeight: FontWeight.w600,
),
@@ -169,6 +179,7 @@ class RecommendationRecordCard extends ConsumerWidget {
],
),
),
),
);
},
loading: () => const Card(

View File

@@ -247,13 +247,18 @@ class _SplashScreenState extends State<SplashScreen>
}
void _navigateToHome() {
// 권한 요청이 지연되어도 스플래시(Splash) 화면이 멈추지 않도록 최대 5초만 대기한다.
final permissionFuture = _ensurePermissions().timeout(
const Duration(seconds: 5),
onTimeout: () {},
);
Future.wait([
_ensurePermissions(),
permissionFuture,
Future.delayed(AppConstants.splashAnimationDuration),
]).then((_) {
if (mounted) {
]).whenComplete(() {
if (!mounted) return;
context.go('/home');
}
});
}