multi_select_flutter icon indicating copy to clipboard operation
multi_select_flutter copied to clipboard

How to increase the space below the Confirmation and Cancel button?

Open mattg1995 opened this issue 4 years ago • 2 comments

The OK and CANCEL button are very close to the bottom of the scree n and causing issue on iPhone 12 Pro Max. Is there anyway to give this padding below?

mattg1995 avatar Jun 19 '21 14:06 mattg1995

If you are using MultiSelectBottomSheet you can wrap it with Padding and give bottom padding.

Something like this:

Padding(
          padding: EdgeInsets.only(bottom:8.0),
         child: MultiSelectBottomSheet(
           items: _items))

tazsid avatar Jul 27 '21 06:07 tazsid

This doesn't work sadly @tazsid. @mattg1995 did you (or anyone else) manage to solve this issue please? Here's a photo to illustrate the issue - the bottom sheet's content isn't respecting the safe content area.

Screenshot 2023-08-21 at 16 22 31

maxbeech avatar Aug 21 '23 15:08 maxbeech