login button are not working when keyboard open. I also try keyboardShouldPersistTaps="handle"
Closed this issue · 1 comments
komailabbas12 commented
<SwipeablePanel
{...panelProps}
isActive={isPanelActive}
onlyLarge={true}
keyboardShouldPersistTaps="handle"
>
{/* Your Content Here */}
{/* isloginr 1 for login 2 for register */}
<Login id={isloginr} navigation={navigation} keyboardShouldPersistTaps='handled'/>
</SwipeablePanel>
when in login the keyboard are open then rest of the button are not working first we have to close the keyboard
komailabbas12 commented
The issue is solved by adding
scrollViewProps={{
scrollEnabled: false
}}