We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when ViewPagerAndroid nested ViewPagerAndroid,the child ViewPagerAndroid can't load the initialPage and can't slide example like:
<ViewPagerAndroid initialPage={0} scrollEnabled={true} style={{ flex: 1 }}> <View style={{ height: 50, width: windowSize.width }}> <Text>it like a scrolltab </Text> <ViewPagerAndroid automaticallyAdjustContentInsets={false} scrollEnabled={true} initialPage={0} onPageSelected={(e) => { }} style={{ height: 100, width: 500, backgroundColor: 'red' }}> <View style={{ backgroundColor: 'blue' }}><Text>it like a swiper</Text></View> <View style={{ backgroundColor: 'yellow' }}><Text>222222</Text></View> <View style={{ backgroundColor: 'green' }}><Text>333333</Text></View> </ViewPagerAndroid> </View> <View style={{ height: 50, width: windowSize.width }}><Text>aaaaa</Text></View> <View style={{ height: 50, width: windowSize.width }}><Text>bbbbb</Text></View> <View style={{ height: 50, width: windowSize.width }}><Text>ccccc</Text></View> </ViewPagerAndroid>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
when ViewPagerAndroid nested ViewPagerAndroid,the child ViewPagerAndroid can't load the initialPage and can't slide
example like:
The text was updated successfully, but these errors were encountered: