Fix Calendar
This commit is contained in:
parent
3f20f1dc44
commit
6794aef4e5
1 changed files with 53 additions and 50 deletions
|
|
@ -243,7 +243,8 @@ class _PatientAccessRequestState extends State<Appointments> {
|
||||||
Widget getBody() {
|
Widget getBody() {
|
||||||
return Stack(
|
return Stack(
|
||||||
children: [
|
children: [
|
||||||
Column(
|
SingleChildScrollView(
|
||||||
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
getTitle(),
|
getTitle(),
|
||||||
|
|
@ -270,7 +271,8 @@ class _PatientAccessRequestState extends State<Appointments> {
|
||||||
FutureBuilder(
|
FutureBuilder(
|
||||||
future: appointmentResults,
|
future: appointmentResults,
|
||||||
builder: (context, snapshot) {
|
builder: (context, snapshot) {
|
||||||
if (snapshot.connectionState == ConnectionState.waiting) {
|
if (snapshot.connectionState ==
|
||||||
|
ConnectionState.waiting) {
|
||||||
return const Expanded(
|
return const Expanded(
|
||||||
child: Center(child: Mihloadingcircle()));
|
child: Center(child: Mihloadingcircle()));
|
||||||
} else if (snapshot.connectionState ==
|
} else if (snapshot.connectionState ==
|
||||||
|
|
@ -295,6 +297,7 @@ class _PatientAccessRequestState extends State<Appointments> {
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
Positioned(
|
Positioned(
|
||||||
right: 0,
|
right: 0,
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue