File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
frontend/ongi/lib/screens/health Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments