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

Disable fade and animation to stickyHeader

Open EliseiNicolae opened this issue 3 years ago • 0 comments

It is possible to disable animation and fade to StickyHeader?

My code:

    <ParallaxScrollView
      fadeOutForeground
      parallaxHeaderHeight={400}
      stickyHeaderHeight={Platform.OS === 'ios' ? 130 : 96}
      renderStickyHeader={() => (
        <HeaderSticky />
      )}
      renderForeground={() => (
        <HeaderBackground />
      )}
    >
      <View style={styles.container}>
        <Content />
      </View>
    </ParallaxScrollView>

EliseiNicolae avatar Jan 25 '22 19:01 EliseiNicolae