From 8f62eba0840eb598214f2587a4e0e9f0daecf8b6 Mon Sep 17 00:00:00 2001 From: yaso Date: Thu, 7 Nov 2024 09:44:06 +0200 Subject: [PATCH] add spacing above and below header 5 each --- .../lib/mih_components/mih_layout/mih_layout_builder.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Frontend/patient_manager/lib/mih_components/mih_layout/mih_layout_builder.dart b/Frontend/patient_manager/lib/mih_components/mih_layout/mih_layout_builder.dart index 8b6fd350..92f0261f 100644 --- a/Frontend/patient_manager/lib/mih_components/mih_layout/mih_layout_builder.dart +++ b/Frontend/patient_manager/lib/mih_components/mih_layout/mih_layout_builder.dart @@ -81,7 +81,9 @@ class _MIHLayoutBuilderState extends State { child: Column( mainAxisAlignment: MainAxisAlignment.start, children: [ + const SizedBox(height: 5), getLayoutHeader(), + const SizedBox(height: 5), Expanded(child: widget.body), ], ), @@ -112,7 +114,9 @@ class _MIHLayoutBuilderState extends State { child: Column( mainAxisAlignment: MainAxisAlignment.start, children: [ + const SizedBox(height: 5), getLayoutHeader(), + const SizedBox(height: 5), Expanded(child: widget.body), ], ),