We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8727a commit f261494Copy full SHA for f261494
src/components/picker/PickerItemsList.tsx
@@ -87,7 +87,12 @@ const PickerItemsList = (props: PickerItemsListProps) => {
87
{topBarProps.doneLabel ?? 'Select'}
88
</Text>
89
</View>
90
- <WheelPicker initialValue={context.value as PickerSingleValue} items={items} onChange={setWheelPickerValue}/>
+ <WheelPicker
91
+ flatListProps={listProps}
92
+ initialValue={context.value as PickerSingleValue}
93
+ items={items}
94
+ onChange={setWheelPickerValue}
95
+ />
96
97
);
98
};
0 commit comments