flattern text into several spans

flattern text into several spans (step 1, not finish yet)
This commit is contained in:
Horcrux
2016-09-02 10:24:33 +08:00
parent 13ddd15d09
commit 74b9917bd3
11 changed files with 214 additions and 209 deletions

View File

@@ -28,7 +28,11 @@ class Text extends Shape {
let props = this.props;
return <RNSVGText
ref={ele => {this.root = ele;}}
{...this.extractProps({...props})}
{...this.extractProps({
...props,
x: null,
y: null
})}
{...extractText(props)}
/>;
}