Skip to content

Commit b912dcb

Browse files
authored
fix: 건강 기록 화면 뒤로가기 버튼 수정 (#167)
1 parent 009e1d6 commit b912dcb

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

frontend/ongi/lib/screens/health/health_home_screen.dart

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -676,11 +676,13 @@ class _HealthHomeScreenState extends State<HealthHomeScreen> {
676676

677677
Widget _buildBackButton() {
678678
return Positioned(
679-
top: 40,
679+
top: 60,
680680
left: 20,
681-
child: IconButton(
682-
icon: const Icon(Icons.arrow_back, color: Colors.black, size: 28),
683-
onPressed: _goBackToHome,
681+
child: Container(
682+
child: IconButton(
683+
icon: SvgPicture.asset('assets/images/back_icon_white.svg'),
684+
onPressed: _goBackToHome,
685+
),
684686
),
685687
);
686688
}
@@ -738,7 +740,7 @@ class _HealthHomeScreenState extends State<HealthHomeScreen> {
738740
Icon(
739741
Icons.family_restroom,
740742
size: 80,
741-
color: AppColors.ongiOrange.withOpacity(0.7),
743+
color: AppColors.ongiOrange.withValues(alpha: 0.7),
742744
),
743745
const SizedBox(height: 40),
744746

0 commit comments

Comments
 (0)