Closed matpiwowarski closed 3 years ago
Did you figure it out?
I didn't 🙃 I changed the library.
@matpiwowarski may I ask you which one you choose?
Using FlatList
instead of ScrollView
solved this issue for me.
I used a workaround to bypass this problem hiding the search input and add "fixedHeight" to true
<MultiSelect items={Categories} uniqueKey="id" onSelectedItemsChange={onSelectedItemsChange} selectedItems={entry.categories} fixedHeight={true} hideSubmitButton={true} hideTags={true} styleInputGroup={{ display: "none", }} hideDropdown={true} />
Issue summary
I'm using MultiSelect inside ScrollView but I'm getting warning "VirtualizedLists should never be nested inside plain ScrollViews with the same orientation".
How can I get rid of this warning?