Skip to content

Commit fe9d19e

Browse files
committed
fix layout
1 parent f1fb4e6 commit fe9d19e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lib/widgets/next_appointment.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class _NextAppointmentState extends State<NextAppointment> {
133133
fontWeight: FontWeight.bold,
134134
),
135135
),
136-
const SizedBox(height: 4),
136+
const SizedBox(height: 10),
137137
const Text(
138138
'Next Appointment Details',
139139
style: TextStyle(
@@ -155,7 +155,7 @@ class _NextAppointmentState extends State<NextAppointment> {
155155
),
156156
],
157157
),
158-
const SizedBox(height: 8),
158+
const SizedBox(height: 10),
159159

160160
Row(
161161
crossAxisAlignment: CrossAxisAlignment.start,
@@ -169,7 +169,7 @@ class _NextAppointmentState extends State<NextAppointment> {
169169
),
170170
],
171171
),
172-
const SizedBox(height: 8),
172+
const SizedBox(height: 10),
173173

174174
Row(
175175
crossAxisAlignment: CrossAxisAlignment.start,

lib/widgets/personal_details.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ class _PersonalDetailsState extends State<PersonalDetails> {
7474
),
7575
const SizedBox(height: 16),
7676
_buildLabeledRow('Address:', address),
77-
const SizedBox(height: 8),
77+
const SizedBox(height: 10),
7878
_buildLabeledRow('Best Contact Phone:', bestContactPhone),
79-
const SizedBox(height: 8),
79+
const SizedBox(height: 10),
8080
_buildLabeledRow(
8181
'Alternative Contact Number:', alternativeContactNumber),
82-
const SizedBox(height: 8),
82+
const SizedBox(height: 10),
8383
_buildLabeledRow('Email:', email),
84-
const SizedBox(height: 8),
84+
const SizedBox(height: 10),
8585
_buildLabeledRow('Date of Birth:', dateOfBirth),
8686
const SizedBox(height: 8),
8787
_buildLabeledRow('Gender:', gender),

0 commit comments

Comments
 (0)