fix: render dotted and dashed outlines on iOS views without border radii - #58028
fix: render dotted and dashed outlines on iOS views without border radii#58028neutronm wants to merge 1 commit into
Conversation
Views with no border radius took the Core Animation outline path, which can only draw a solid border, so `outlineStyle: 'dotted'` and `'dashed'` were silently rendered as solid. Restrict that path to solid outlines so non-solid styles are drawn with Core Graphics, matching how non-solid borders are already handled.
|
Hi @neutronm! Thank you for your pull request and welcome to our community. Action RequiredIn order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you. ProcessIn order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA. Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with If you have received this in error or have any questions, please contact us at cla@meta.com. Thanks! |
|
Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Meta Open Source project. Thanks! |
|
Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Meta Open Source project. Thanks! |
|
@javache has imported this pull request. If you are a Meta employee, you can view this in D116779403. |
Summary:
Fixes #57841.
outlineStyle: 'dotted'and'dashed'render as solid on iOS. Android renders all three correctly, and the documented API lists all three values with no platform caveat.Root cause
-[RCTViewComponentView invalidateLayer]draws the outline through one of two paths:_outlineLayer.borderWidth/.borderColor. Cheap, butCALayercan only stroke a solid border.RCTAddContourEffectToLayer, which forwardsoutlineStyletoRCTGetBorderImageand does honour dotted/dashed.The branch choosing between them only looked at the border radii:
Every view without a border radius therefore took the Core Animation path, and its
outlineStylewas silently dropped. Rounded views fell through to Core Graphics — which is why a dotted or dashed outline starts working as soon as aborderRadiusis set.The equivalent branch for borders, ~80 lines above, already gets this right:
useCoreAnimationBorderRenderingincludesborderMetrics.borderStyles.left == BorderStyle::Solid, so a non-solid border falls through to Core Graphics. The outline branch never got the matching check whenoutlinewas implemented in #46444.Fix
Add the missing
outlineStyle == OutlineStyle::Solidterm, so non-solid outlines fall through to Core Graphics exactly as non-solid borders already do. Solid outlines keep the cheaper Core Animation path, so there is no cost for the common case.Why it went unnoticed
The only RNTester examples using
outlineStyle: 'dotted'/'dashed'also set aborderRadius, so they only ever exercised the working path. This PR adds the square-cornered cases next to them, labelled, so all six combinations of{square, rounded} × {solid, dashed, dotted}are visible at once.Note on #57837
#57837 (open) rewrites the two
UIColor *outlineColor = ...lines in this same block to resolvedynamic colors against the trait collection. This change deliberately leaves those two lines
untouched — it only adds a term to the surrounding
if— so the two patches touch disjoint linesand should merge without conflict in either order.
Changelog:
[IOS] [FIXED] - Render
outlineStyle: 'dotted'and'dashed'on views without border radiiTest Plan:
Manual verification
RNTester → Components → View → Outline, iPhone 17 Pro Simulator (iOS 26.1), New Architecture, built from source (
RCT_USE_PREBUILT_RNCORE=0).square dashedandsquare dottedrender solidThe rounded cases and every pre-existing example in the Outline screen are pixel-identical before and after; only the two square non-solid outlines change.
Automated
yarn jestyarn flow-checkFound 0 errorsyarn lint(eslint --max-warnings 0 .)node ./scripts/clang-format.js <changed .mm files>yarn build-types --validatePASS API snapshot is up to date.tsc -p packages/react-native/__typetests__/tsconfig.jsonyarn test-ios(RNTesterUnitTests)** TEST SUCCEEDED **— 167 tests, 16 skipped, 0 failuresThe one Jest suite that did not pass in the full run (
GenerateComponentDescriptorH-test.js) was a workerSIGSEGV, not an assertion failure; it passes 18/18 when run on its own.Unit tests
React/Tests/Mounting/RCTViewComponentViewTests.mmgains two cases next to the existing ones:testSquareSolidOutlineUsesCoreAnimationBorder— a square solid outline still usesCALayer.borderWidth(the fast path is not regressed).testSquareDottedAndDashedOutlinesAreDrawnWithCoreGraphics— square dotted and dashed outlines are drawn intolayer.contentswithborderWidth == 0.React/Tests/**is excluded from theReact-Corepodspec, so these are not built by the OSSRNTesterUnitTeststarget. They were verified to compile against the installed pod headers withclang -fsyntax-only -x objective-c++ -std=c++20.