Commit d72e7b8 1 parent 0458bf0 commit d72e7b8 Copy full SHA for d72e7b8
File tree 1 file changed +7
-0
lines changed
lib/features/home/service/components
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,11 @@ import 'package:flutter/material.dart';
29
29
30
30
import 'package:healthpod/constants/colours.dart' ;
31
31
32
+ /// A widget displaying the count of future medical appointments.
33
+ ///
34
+ /// Currently, it shows a note indicating the number of upcoming appointments.
35
+ /// Designed for future enhancements to dynamically display appointment counts.
36
+
32
37
class NumberAppointments extends StatefulWidget {
33
38
const NumberAppointments ({super .key});
34
39
@@ -37,6 +42,8 @@ class NumberAppointments extends StatefulWidget {
37
42
}
38
43
39
44
class _NumberAppointmentsState extends State <NumberAppointments > {
45
+ // Widget content placeholders.
46
+
40
47
final String heading = 'Numbers for Medical Appointments' ;
41
48
final String note = 'Only one appointment in the future' ;
42
49
You can’t perform that action at this time.
0 commit comments