Jorge Cabiedes
Jorge Cabiedes
Summary: Why? Previously we didn't support using percentages like: ``` style={{ width=100, height=100, borderRadius='100%', }} ``` These percentages refer to the corresponding dimension of the border box. What? Change the...
Summary: Non-uniform edge insets caused issues on iOS 10. The code nowadays interferes with the rendering for large borderRadii so this diff removes it. Differential Revision: D56333637
Summary: Why? Previously we didn't support using percentages like: ``` style={{ width=100, height=100, borderRadius='100%', }} ``` These percentages refer to the corresponding dimension of the border box. What? - Added...
Summary: Added missing e2e tests for border-radiusf Changelog: [Internal] Differential Revision: D57062098
Summary: tsia Changelog: [Internal] Differential Revision: D58760458
Summary: Add support for most keyword values of mix-blend-mode on iOS and added RNTester Example Missing compositing operators and global values Changelog: [Internal] Differential Revision: D59402969
Summary: Adding missing drop-shadow test to rn-tester. Added with alpha-hotdog image to show we are creating the shadow with the alpha channel of the view. Changelog: [Internal] Differential Revision: D59410148
Summary: This diff adds: `outline-width`: https://developer.mozilla.org/en-US/docs/Web/CSS/outline-width `outline-color`: https://developer.mozilla.org/en-US/docs/Web/CSS/outline-color `outline-style`: https://developer.mozilla.org/en-US/docs/Web/CSS/outline-style `outline-offset`: https://developer.mozilla.org/en-US/docs/Web/CSS/outline-offset Using `BackgroundStyleApplicator` Changelog: [Android] [Added] - Outline properties `outline-width`, `outline-color`, `outline-style` & `outline-offset` Differential Revision: D61293868
Summary: This diff adds: `outline-width`: https://developer.mozilla.org/en-US/docs/Web/CSS/outline-width `outline-color`: https://developer.mozilla.org/en-US/docs/Web/CSS/outline-color `outline-style`: https://developer.mozilla.org/en-US/docs/Web/CSS/outline-style `outline-offset`: https://developer.mozilla.org/en-US/docs/Web/CSS/outline-offset Using `BackgroundStyleApplicator` Changelog: [iOS] [Added] - Outline properties `outline-width`, `outline-color`, `outline-style` & `outline-offset` Differential Revision: D62273339
Summary: Before we were relying on absolute focus direction to determine the next focusable view inspired by Recycler View's implementation. This turned out to be inaccurate since FocusForward and FocusBackward...