add padding to messages in appointment and patient manager
This commit is contained in:
parent
2a8c628941
commit
a61a5d2064
2 changed files with 49 additions and 32 deletions
|
|
@ -266,10 +266,13 @@ class _PatientAccessRequestState extends State<Appointments> {
|
|||
mainAxisSize: MainAxisSize.max,
|
||||
children: [
|
||||
Expanded(
|
||||
child: Text(
|
||||
"Work Inprogress!!!\nSelected Day: $selectedDay",
|
||||
textAlign: TextAlign.center,
|
||||
style: const TextStyle(fontSize: 35),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.only(top: 35.0),
|
||||
child: Text(
|
||||
"Work Inprogress!!!\nSelected Day: $selectedDay",
|
||||
textAlign: TextAlign.center,
|
||||
style: const TextStyle(fontSize: 35),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue