Skip to content

Commit a1d4982

Browse files
authored
refactor: 통증기록 앞 뒤 변경 버튼 터치 영역 변경 (#210)
1 parent 0ade378 commit a1d4982

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1505,31 +1505,31 @@ class _HealthStatusInputScreenState extends State<HealthStatusInputScreen> {
15051505
Positioned(
15061506
right: 16,
15071507
bottom: 16,
1508-
child: Container(
1509-
width: 50,
1510-
height: 50,
1511-
decoration: BoxDecoration(
1512-
shape: BoxShape.circle,
1513-
color: isFrontView
1514-
? Colors.white
1515-
: AppColors.ongiOrange,
1516-
border: Border.all(
1517-
color: AppColors.ongiOrange,
1518-
width: 2,
1519-
),
1520-
boxShadow: [
1521-
BoxShadow(
1522-
color: Colors.black.withValues(
1523-
alpha: 0.1,
1524-
),
1525-
1526-
blurRadius: 4,
1527-
offset: const Offset(0, 2),
1508+
child: GestureDetector(
1509+
onTap: toggleView,
1510+
child: Container(
1511+
width: 50,
1512+
height: 50,
1513+
decoration: BoxDecoration(
1514+
shape: BoxShape.circle,
1515+
color: isFrontView
1516+
? Colors.white
1517+
: AppColors.ongiOrange,
1518+
border: Border.all(
1519+
color: AppColors.ongiOrange,
1520+
width: 2,
15281521
),
1529-
],
1530-
),
1531-
child: GestureDetector(
1532-
onTap: toggleView,
1522+
boxShadow: [
1523+
BoxShadow(
1524+
color: Colors.black.withValues(
1525+
alpha: 0.1,
1526+
),
1527+
1528+
blurRadius: 4,
1529+
offset: const Offset(0, 2),
1530+
),
1531+
],
1532+
),
15331533
child: Center(
15341534
child: Text(
15351535
isFrontView ? '앞' : '뒤',

0 commit comments

Comments
 (0)