0

I need Scrollable in DropDown in React Native Paper using Menu.Item.

2 Answers2

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.Items will appear in a ScrollView, that's how I got it to work.

Something like:

<Menu>
  <ScrollView>
    ...   
  </ScrollView>
</Menu>