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. |
Answered by
kkaplinski
Nov 16, 2022
Replies: 2 comments 1 reply
|
When |
0 replies
|
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. |
1 reply
Answer selected by
jukqaz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

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.