add scrolling
This commit is contained in:
parent
02dc125b0a
commit
21b6154239
1 changed files with 79 additions and 76 deletions
|
|
@ -127,7 +127,8 @@ class _MihAccessRequestState extends State<MihAccessRequest> {
|
|||
}
|
||||
|
||||
Widget getBody() {
|
||||
return Column(
|
||||
return SingleChildScrollView(
|
||||
child: Column(
|
||||
children: [
|
||||
const Text(
|
||||
"Access List",
|
||||
|
|
@ -208,8 +209,9 @@ class _MihAccessRequestState extends State<MihAccessRequest> {
|
|||
"$errorCode: Error pulling Patients Data\n$baseUrl/queue/patients/\n$errorBody",
|
||||
style: TextStyle(
|
||||
fontSize: 25,
|
||||
color:
|
||||
MzanziInnovationHub.of(context)!.theme.errorColor()),
|
||||
color: MzanziInnovationHub.of(context)!
|
||||
.theme
|
||||
.errorColor()),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
);
|
||||
|
|
@ -217,6 +219,7 @@ class _MihAccessRequestState extends State<MihAccessRequest> {
|
|||
},
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue