fix(ios/segmented-bar): Fix backgroundColor border radius on initial rendering#11054
fix(ios/segmented-bar): Fix backgroundColor border radius on initial rendering#11054NathanWalker merged 4 commits intoNativeScript:mainfrom
Conversation
NathanWalker
left a comment
There was a problem hiding this comment.
great simple fix, thank you @jzgoda 💯
|
| Command | Status | Duration | Result |
|---|---|---|---|
nx test apps-automated -c=ios |
❌ Failed | 2m 46s | View ↗ |
nx run-many --target=test --configuration=ci --... |
✅ Succeeded | 1s | View ↗ |
☁️ Nx Cloud last updated this comment at 2026-01-24 03:57:53 UTC
|
View your CI Pipeline Execution ↗ for commit b05cc20
☁️ Nx Cloud last updated this comment at |
|
Can ignore the single failing ios test (it's commonly flakey). |
Thank you for accepting & releasing it so quickly! |

PR Checklist
What is the current behavior?
When setting
backgroundColoron SegmentedBar, the initial render on iOS 26 is missing the border radius, and shows sharp corners.What is the new behavior?
This fix exposes the already defined
nativeBackgroundStatefrompackages/core/ui/core/view/index.d.ts, and triggers a redraw if it isinvalidduring theonLoadedevent.Fixes #11014.