I need Scrollable in DropDown in React Native Paper using Menu.Item.
Asked
Active
Viewed 1,111 times
2 Answers
0
Wrap the Menu component in a ScrollView, like this:
<ScrollView>
<Menu...>
.
.
.
<\Menu>
</ScollView>

scrayne
- 701
- 7
- 18
0
Leaving this for future reference, but instead of wrapping the <Menu>
element in a ScrollView
, wrap the inside of the Menu, where the Menu.Item
s will appear in a ScrollView, that's how I got it to work.
Something like:
<Menu>
<ScrollView>
...
</ScrollView>
</Menu>