Open
Description
<ParallaxScrollView
onScroll={onScroll}
backgroundColor={themeColor}
headerBackgroundColor={themeColor}
stickyHeaderHeight={STICKY_HEADER_HEIGHT}
parallaxHeaderHeight={PARALLAX_HEADER_HEIGHT}
renderBackground={() => (
<View key="background"/>
)}
renderForeground={() => (
<View key="parallax-header" style={styles.parallaxHeader}>
{this.title()}
</View>
)}
renderFixedHeader={() => (
<View key="fixed-header" style={styles.fixedSection} />
)}>
<FlatList
extraData={this.state}
data={this.state.data}
renderItem={({item, index}) => this.renderCards(item, index)}
onEndReached={this.props.handleLoadMore}
onEndReachedThreshold={10}
/>
</ParallaxScrollView>
Metadata
Metadata
Assignees
Labels
No labels