Is that possible to make animate profile Image exactly as telegram profile animation with react-native
?
const realWidth = height > width ? width : height;const headerMaxHeight = realWidth;const headerMidHeight = 150;const headerMinHeight = 50;const headerHeight = scrollY.interpolate({ inputRange: [0, 300], outputRange: [headerMaxHeight, headerMinHeight-5], extrapolate: 'clamp', });<Animated.ScrollView onScroll={Animated.event([{ nativeEvent: { contentOffset: { y: scrollY } } }], { useNativeDriver: false })} style={{ flex: 1 }}></Animated.ScrollView>