You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading to 0.14.0, we noticed that the last separator in our SegmentedControls was no longer showing on Android. iOS continues to work fine.
0.13.0:
0.14.0:
After some digging and debugging, what appears to be happening is that the addition of the borderRadius* properties to the right edge of the last option is also clipping the border on the left.
As a result, it may be best to just wait for an upstream fix (facebook/react-native#11706), but there may be some kind of workaround we could do here until that happens.
One idea I have is to apply the separator style properties to the right border of the next-to-last option, rather than the left border of the last option. This is an ugly hack, but would work around the issue.
The text was updated successfully, but these errors were encountered:
After upgrading to 0.14.0, we noticed that the last separator in our
SegmentedControls
was no longer showing on Android. iOS continues to work fine.0.13.0:
0.14.0:
After some digging and debugging, what appears to be happening is that the addition of the
borderRadius*
properties to the right edge of the last option is also clipping the border on the left.This appears to be caused by facebook/react-native#11042.
As a result, it may be best to just wait for an upstream fix (facebook/react-native#11706), but there may be some kind of workaround we could do here until that happens.
One idea I have is to apply the separator style properties to the right border of the next-to-last option, rather than the left border of the last option. This is an ugly hack, but would work around the issue.
The text was updated successfully, but these errors were encountered: