add spacing above and below header 5 each

This commit is contained in:
2024-11-07 09:44:06 +02:00
parent 9fb3abab7e
commit 8f62eba084

View File

@@ -81,7 +81,9 @@ class _MIHLayoutBuilderState extends State<MIHLayoutBuilder> {
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<MIHLayoutBuilder> {
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
const SizedBox(height: 5),
getLayoutHeader(),
const SizedBox(height: 5),
Expanded(child: widget.body),
],
),