douglasjunior / react-native-keyboard-manager

⚛ Library to prevent issues of keyboard sliding up and cover inputs on React-Native iOS projects.
https://www.npmjs.com/package/react-native-keyboard-manager
MIT License
971 stars 59 forks source link

Manual scrolling when keyboard is visible #21

Closed nicholasrq closed 5 years ago

nicholasrq commented 6 years ago

Not sure if it's possible but it would be really handy to be able to scroll view manually (with your finger) when keyboard is shown and Keyboard Manager does its magic. Now we're only able to scroll view with prev/next buttons and it's not really cool for UX. Especially it would be useful when there are not required fields in multiple fields forms, when you want to skip few and forced to tap [Next] for few times to get to desired field.

douglasjunior commented 6 years ago

Hi @nicholasrq, did you try to disable KeyboardManager.setShouldResignOnTouchOutside(false);?

This library is a bridge to IQKeyboardManager, have you checked if there is any option?

douglasjunior commented 5 years ago

The IQKeyboardManager do not enable scroll by itself, you need to wrap your view with a ScrollView.