React-Native-ViewPager
React-Native-ViewPager copied to clipboard
Fit ViewPager height to content without setting fixed height
Is there a way of setting the ViewPager height to the content height? I tried flex: 0 but it just renders nothing.
<View style={styles.ViewPagerContainer}>
<ViewPager
onPageScroll={e => this.tryLoadMoreEventsOnEndReached(e.position, this.props.eventList)}
style={styles.ViewPager}>
{mapToEventItem(this.props.eventList.results, this.props.navigator)}
</ViewPager>
</View>`
anyone could give us a workaround or something? thanks!