Patient view size fix

This commit is contained in:
2024-09-06 12:58:55 +02:00
parent 14ee71c6ce
commit 4d9fc4aee7
7 changed files with 46 additions and 19 deletions

View File

@@ -651,7 +651,7 @@ class _PatientFilesState extends State<PatientFiles> {
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return Container(
height: height - 177,
height: height - 100,
decoration: BoxDecoration(
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
borderRadius: BorderRadius.circular(25.0),
@@ -703,7 +703,7 @@ class _PatientFilesState extends State<PatientFiles> {
);
} else {
return Container(
height: height - 177,
height: height - 175,
decoration: BoxDecoration(
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
borderRadius: BorderRadius.circular(25.0),