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
normal Useage
<View style={{height: 200, backgroundColor: 'white'}}> <ViewOverflow style={{width: 200, height: 100, backgroundColor: 'pink'}}> <View style={{width: 100, height: 50, position: 'absolute', left: 100, bottom: -25, backgroundColor: 'yellow'}}> <View style={{backgroundColor: 'skyblue', height: '100%'}} /> </View> </ViewOverflow> </View>
let we set outside the ViewOverflow area bottom: -25 change to bottom: -50
bottom: -25
bottom: -50
to fixed it, we can replace View with ViewOverflow
<View style={{height: 200, backgroundColor: 'white'}}> <ViewOverflow style={{width: 200, height: 100, backgroundColor: 'pink'}}> <ViewOverflow style={{width: 100, height: 50, position: 'absolute', left: 100, bottom: -50, backgroundColor: 'yellow'}}> <View style={{backgroundColor: 'skyblue', height: '100%'}} /> </ViewOverflow> </ViewOverflow> </View>
now we can see it
So,Usage outside the ViewOverflow area seems like:
<ViewOverflow> <ViewOverflow style={styles.absolute}> <ComponentContent /> <ViewOverflow> </ViewOverflow>
The text was updated successfully, but these errors were encountered:
Every View with overflowing area must have as parent another ViewOverflow component.
ViewOverflow
Sorry, something went wrong.
No branches or pull requests
normal Useage
let we set outside the ViewOverflow area
bottom: -25
change tobottom: -50
to fixed it, we can replace View with ViewOverflow
now we can see it
So,Usage outside the ViewOverflow area seems like:
The text was updated successfully, but these errors were encountered: