There is space. #127
-
ImageCode{devices && (
<SelectProvider>
<PaddingContainer style={{ width: '100%' }}>
<Select
animated
placeholderText={'Select device'}
onSelect={(_, index) => selectDevices(index)}
options={devices.map((device) => ({
label: device.deviceId,
value: device.deviceNickname,
}))}
/>
</PaddingContainer>
</SelectProvider>
)} ExplainAs in the code shown above, I used only the basic functions, but there is a space as above in Android and iOS. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
When |
Beta Was this translation helpful? Give feedback.
-
Hi @jukqaz. Please try to wrap your whole app with If it doesn't help please provide us with some reproducible expo snack or minimum repo. |
Beta Was this translation helpful? Give feedback.
Hi @jukqaz. Please try to wrap your whole app with
<SelectProvider>
in root component: https://mobilereality.github.io/react-native-select-pro/docs/api/select-provider.If it doesn't help please provide us with some reproducible expo snack or minimum repo.