Jakub Grzywacz
Jakub Grzywacz
Merge `*Color` and `*Style` props into `theme` and `styles` props
Hi! 👋 Firstly, thanks for your work on this project! I would like to raise the topic of publishing a new version of this library. It's been a long time...
# Summary * Fixed crash on Android when ``. * Fixed render issue on Android and iOS when radius is zero. According to [MDN Docs](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/r#radialgradient) > A value of lower...
Hi everyone! We've been working on implementing filters in `react-native-svg` for a while now. This update is intended to inform you about our progress and facilitate discussion on implementation and...
### Description When the viewBox ratio differs from the width and height attributes (e.g., `height="500" width="100" viewBox="0 0 200 200"`), the lengths passed as percentage values are incorrect. This inconsistency...
# Summary Motivated by issue #2455, I decided to implement the `currentColor` property in line with the specs (https://www.w3.org/TR/SVG11/color.html#ColorProperty). This involves adding the `color` property to all renderable nodes. ##...
# Summary ## Test Plan Examples app -> Filters -> FeComposite ## Compatibility | OS | Implemented | | ------- | :---------: | | iOS | ✅ | | MacOS...
# Summary Currently, when a developer applies the `borderRadius` style to a `Svg` component: * on iOS: it functions as expected. * on Android: an error occurs, stating `Cannot cast...
Some time ago, I added a new prop on `TextInput` called `selectionHandleColor` https://github.com/facebook/react-native/pull/41092
# Summary resolves #1841 ## Test Plan ```tsx import * as React from 'react'; import {SvgCss} from 'react-native-svg/css'; const Icon = () => ( ); export default Icon; ``` ##...