mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 05:55:10 +00:00
Add setNativeProps method for most of elements
This commit is contained in:
@@ -19,10 +19,14 @@ class Image extends Shape {
|
||||
//preserveAspectRatio: PropTypes.string
|
||||
};
|
||||
|
||||
setNativeProps = (...args) => {
|
||||
this.root.setNativeProps(...args);
|
||||
};
|
||||
|
||||
render() {
|
||||
let {props} = this;
|
||||
return <RNSVGImage
|
||||
ref={ele => this.root = ele}
|
||||
{...this.extractProps(props, {transform: true, responder: true})}
|
||||
x={props.x.toString()}
|
||||
y={props.y.toString()}
|
||||
|
||||
Reference in New Issue
Block a user