Skip to content

Commit d72e7b8

Browse files
committed
update number_appointment
1 parent 0458bf0 commit d72e7b8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lib/features/home/service/components/number_appointments.dart

+7
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ import 'package:flutter/material.dart';
2929

3030
import 'package:healthpod/constants/colours.dart';
3131

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+
3237
class NumberAppointments extends StatefulWidget {
3338
const NumberAppointments({super.key});
3439

@@ -37,6 +42,8 @@ class NumberAppointments extends StatefulWidget {
3742
}
3843

3944
class _NumberAppointmentsState extends State<NumberAppointments> {
45+
// Widget content placeholders.
46+
4047
final String heading = 'Numbers for Medical Appointments';
4148
final String note = 'Only one appointment in the future';
4249

0 commit comments

Comments
 (0)