davidsdearaujo / select_dialog

Flutter package designed to select an item from a list, with the option to filter and even search the items online.
MIT License
65 stars 44 forks source link

shrinkWrap option for short item list #29

Open alandotic opened 3 years ago

alandotic commented 3 years ago

Is there a way to set the height of the pop up modal? i would want the modal to be smaller if the item size is small

sigrlami commented 2 years ago

@alandotic you already have an option for that constrain, create dialog widget and set maxHeight, see

SelectDialog.showModal<String>(
     context,
     constraints: BoxConstraints(maxHeight: 150),
     ...
)