Added a SizedBox with defautlItemPadding

This commit is contained in:
Jacques Doeleman 2022-09-22 14:00:55 +02:00
parent efbcdaac21
commit 27cd911005

View file

@ -113,6 +113,11 @@ class _ProfileWrapperState extends State<ProfileWrapper> {
}, },
), ),
); );
defaultItems.add(
SizedBox(
height: widget.style.betweenDefaultItemPadding,
),
);
} }
} }