enesozturk/rn-swipeable-panel

login button are not working when keyboard open. I also try keyboardShouldPersistTaps="handle"

Closed this issue · 1 comments

<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

The issue is solved by adding

scrollViewProps={{
scrollEnabled: false
}}