akveo / react-native-ui-kitten

:boom: React Native UI Library based on Eva Design System :new_moon_with_face::sparkles:Dark Mode
https://akveo.github.io/react-native-ui-kitten/
MIT License
10.3k stars 952 forks source link

"Select" only renders 5 items #1674

Closed sikemullivan closed 1 year ago

sikemullivan commented 1 year ago

🐛 Bug Report

Can only render 5 items in the Select component.

To Reproduce

Add Select with more than five SelectItem components.

<Select>
              <SelectItem title="blah1"/>
              <SelectItem title="blah2"/>
              <SelectItem title="blah3"/>
              <SelectItem title="blah4"/>
              <SelectItem title="blah5"/>
              <SelectItem title="blah6"/>
              <SelectItem title="blah7"/>
              <SelectItem title="blah8"/>
</Select>
image

Expected behavior

User can select all of them.