Skip to content

Instantly share code, notes, and snippets.

@janicduplessis
Created May 4, 2016 01:54
Show Gist options
  • Save janicduplessis/fd5dd9c4f40d610cd6feb5e3d607348f to your computer and use it in GitHub Desktop.
Save janicduplessis/fd5dd9c4f40d610cd6feb5e3d607348f to your computer and use it in GitHub Desktop.
...
constructor(props) {
super(props);
this.state = {
scrollY: new Animated.Value(0),
};
}
...
render() {
const headerHeight = this.state.scrollY.interpolate({
inputRange: [0, HEADER_SCROLL_DISTANCE],
outputRange: [HEADER_MAX_HEIGHT, HEADER_MIN_HEIGHT],
extrapolate: 'clamp',
});
...
<ScrollView
style={styles.fill}
scrollEventThrottle={16}
onScroll={Animated.event(
[{nativeEvent: {contentOffset: {y: this.state.scrollY}}}]
)}
>
...
</ScrollView>
<Animated.View style={[styles.header, {height: headerHeight}]}>
...
</Animated.View>
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment