Skip to content

Commit 8dce18d

Browse files
authored
fix: 운동시간 더미 값 & 알약 더미 아이템 개수 수정 (#66)
* feat: 통증 부위 선택 화면 구현 완료 * fix: 운동 시간 더미값 수정 * fix: 알약 더미 아이템 개수 수정
1 parent c3ed029 commit 8dce18d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class _ExerciseRecordScreenState extends State<ExerciseRecordScreen> {
2121
// Get exercise time for a specific date (placeholder: returns 0)
2222
Map<String, int> getExerciseTime(DateTime date) {
2323
// TODO: Replace with real backend call
24-
return {'hours': 1, 'minutes': 50};
24+
return {'hours': 1, 'minutes': 30};
2525
}
2626

2727
// Convert page index to date for exercise PageView

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ class _PillHistoryScreenState extends State<PillHistoryScreen> {
8383
bottom: 0,
8484
child: ListView.builder(
8585
padding: EdgeInsets.all(10),
86-
itemCount: 10,
86+
itemCount: 3,
8787
itemBuilder: (context, index) {
88-
if (index == 9) {
88+
if (index == 2) {
8989
return GestureDetector(
9090
onTap: () {
9191
Navigator.push(

0 commit comments

Comments
 (0)