mxck / react-native-material-menu

Pure JavaScript material menu component for React Native
MIT License
520 stars 92 forks source link

Added scroll view to list #112

Closed ankitecd closed 3 years ago

ankitecd commented 3 years ago

Added ScrollView to the Menu as the it was not scrollable when there was huge list of MenuItem and the content overflows the screen. By adding ScrollView now one can add maxHeight property to Menu Styles and the content then will be scrollable

mxck commented 3 years ago

According to the material-ui spec, the menu doesn't have that option. You can always make a wrapper around the menu and use it in your place :)

ankitecd commented 2 years ago

According to the material-ui spec, the menu doesn't have that option. You can always make a wrapper around the menu and use it in your place :)

The wrapper was not working and I found that wrapper issue in context of react-native-material-menu were reported by different people so created one fix for same.

Also can you share the link for material-ui spec which you mentioned, Thanks.