mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
Add setNativeProps method for most of elements
This commit is contained in:
@@ -9,8 +9,13 @@ class Polygon extends Component{
|
||||
points: PropTypes.oneOfType([PropTypes.string, PropTypes.array])
|
||||
};
|
||||
|
||||
setNativeProps = (...args) => {
|
||||
this.root.getNativeElement().setNativeProps(...args);
|
||||
};
|
||||
|
||||
render() {
|
||||
return <Path
|
||||
ref={ele => this.root = ele}
|
||||
{...this.props}
|
||||
d={`M${this.props.points.trim().replace(/\s+/g, 'L')}z`}
|
||||
/>;
|
||||
|
||||
Reference in New Issue
Block a user