react-native-keyboard-aware-scroll-view: TypeError: responder.scrollResponderScrollTo is not a function. (In 'responder.scrollResponderScrollTo

When I tried to KeyboardAwareScrollView with TextInput simulator_screenshot_E4C3359A-1C46-4A34-8299-6F052D9DC3A6

About this issue

  • Original URL
  • State: closed
  • Created 3 years ago
  • Reactions: 5
  • Comments: 16

Most upvoted comments

In my case, I resolved using these props:

<KeyboardAwareScrollView
  enableOnAndroid={true}
  keyboardShouldPersistTaps={"handled"}
  enableResetScrollToCoords={false}
  >

I have found a temporary solution. add this in package.json file

"react-native-keyboard-aware-scroll-view": "github:APSL/react-native-keyboard-aware-scroll-view#pull/501/head",

Thankyou @dariuxmx it worked for me

In my case, I resolved using these props:

<KeyboardAwareScrollView
  enableOnAndroid={true}
  keyboardShouldPersistTaps={"handled"}
  enableResetScrollToCoords={false}
  >

Oh got it guys thanks, Actually this was the path …

node_modules > @codler > react-native-keyboard-aware-scroll-view > KeyboardAwareHOC.js

I have found a temporary solution. add this in package.json file

"react-native-keyboard-aware-scroll-view": "github:APSL/react-native-keyboard-aware-scroll-view#pull/501/head",

This worked for me, I added a line to package.json and ran a ‘yarn’ command to install over the other version.