From 26f1e8529f31e2251a04d5596a3107517897d16f Mon Sep 17 00:00:00 2001 From: yaso Date: Mon, 16 Sep 2024 14:56:35 +0200 Subject: [PATCH] move expanded into layout builder --- .../lib/components/MIH_Layout/MIH_LayoutBuilder.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend/patient_manager/lib/components/MIH_Layout/MIH_LayoutBuilder.dart b/Frontend/patient_manager/lib/components/MIH_Layout/MIH_LayoutBuilder.dart index 4f11f798..6e1762a3 100644 --- a/Frontend/patient_manager/lib/components/MIH_Layout/MIH_LayoutBuilder.dart +++ b/Frontend/patient_manager/lib/components/MIH_Layout/MIH_LayoutBuilder.dart @@ -40,7 +40,7 @@ class _MIHLayoutBuilderState extends State { children: [ widget.actionButton, Column( - children: [widget.header, widget.body], + children: [widget.header, Expanded(child: widget.body)], ), ], ),