-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
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
Invisible content of large View with borderRadius > 0 (Android 7.0, RN >= 0.57.1) #22213
Comments
It looks like you are using an older version of React Native. Please update to the latest release, v0.57 and verify if the issue still exists. The "⏪Old Version" label will be removed automatically once you edit your original post with the results of running |
It is not related to the |
It seems to be resolved in RN 0.57.5 |
Updated 0.57.5, problem persists |
Only one way to overcome this issue currently is to split big view to 3 subviews, with rounded corners assigned to top and bottom one, so big content will be without rounded corners at all |
same here Environment: React Native Environment Info: i have View 0.75% of screen size with style: modalContent : {
alignItems:'center',
backgroundColor:'white',
borderWidth : 1,
borderColor : 'black',
borderRadius : 5,
width:modalWidth,
height: modalHeight,
}, checked on Samsung s7, Android 7.0 works fine on Android !== 7.0 |
For me, as I've written, it started working properly after upgrading RN to 0.57.5. |
Facing exact issue. Not showing content in most of the Android 7.0 devices. |
I'm getting the same issue, any update on this?? |
Recently, upgraded my project to react native 0.57.2. I am facing the same issue. Content(when content is big) is missing many places. It's very difficult to change all the places and split into 3 subviews. Please fix this issue or let me know if there is any alternate solution. |
Has anybody tried this on 0.58, or 0.59? 0.57.2 was released on October 4, 2018, that release is almost half a year old now. |
Closing this as we haven't gotten any recent repros for the latest version of RN. Happy to reopen if it is still an issue. |
This is still in an issue with RN 0.59.5 |
Hello, currently experiencing this issue on RN 0.59.8, if we have a larger view, when applying a borderRadius, the view dissapear, it's content dont. Made this simple repo to show: https://github.com/CelsoTeixeira/rn-view-border-issue Tested on two different phones that was available at the moment. S9+ with Android 9.0 is displaying the view with the border. Following are two screenshots from both phones. |
Environment
Description
Large
<View />
with borderRadius > 0 gets invisible on Android 7.0 (API level 24) using RN >= 0.57.1.It's regression, because it rendered correctly using RN 0.57.0.
Reproducible Demo
This is rendered expectedly:
However after increasing the height, the violet content disappears, but ScrollView is aware of it so can be scrolled vertically.
The text was updated successfully, but these errors were encountered: