From 27cd9110058f26308789110ffbb5bf694949cdd0 Mon Sep 17 00:00:00 2001 From: Jacques Doeleman Date: Thu, 22 Sep 2022 14:00:55 +0200 Subject: [PATCH] Added a SizedBox with defautlItemPadding --- lib/src/widgets/profile/proifle_wrapper.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/src/widgets/profile/proifle_wrapper.dart b/lib/src/widgets/profile/proifle_wrapper.dart index 866fe49..11b230c 100644 --- a/lib/src/widgets/profile/proifle_wrapper.dart +++ b/lib/src/widgets/profile/proifle_wrapper.dart @@ -113,6 +113,11 @@ class _ProfileWrapperState extends State { }, ), ); + defaultItems.add( + SizedBox( + height: widget.style.betweenDefaultItemPadding, + ), + ); } }