Created
May 4, 2016 01:54
-
-
Save janicduplessis/fd5dd9c4f40d610cd6feb5e3d607348f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
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