react-native-parallax-scroll-view icon indicating copy to clipboard operation
react-native-parallax-scroll-view copied to clipboard

Not working with KeyboardAwareScrollView

Open ushyDev opened this issue 3 years ago • 0 comments

When I type something in TextInput the keyboard automatically closes, has anyone solved this problem?

import { KeyboardAwareScrollView } from "react-native-keyboard-aware-scroll-view";
import ParallaxScrollView from "react-native-parallax-scroll-view";

const AnimatedCustomScrollView = Animated.createAnimatedComponent(KeyboardAwareScrollView)

    <ParallaxScrollView
        ...
         renderScrollComponent={(props) => {
          return(
          <AnimatedCustomScrollView
          {...props}
          />
        )}} 
      >
   </ParalaxScollView>

ushyDev avatar Apr 27 '22 21:04 ushyDev