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

@@ -339,7 +339,7 @@ class _PatientNotesState extends State<PatientNotes> {
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),
@@ -391,7 +391,7 @@ class _PatientNotesState extends State<PatientNotes> {
);
} else {
return Container(
height: height - 177,
height: height - 100,
decoration: BoxDecoration(
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
borderRadius: BorderRadius.circular(25.0),