mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 05:55:10 +00:00
refactor text render
Support G inherit props. Refactor text render. Text glyphs will perfectly draw along the path
This commit is contained in:
@@ -18,6 +18,8 @@ class ViewBox extends Component{
|
||||
y = viewbox.y;
|
||||
}
|
||||
|
||||
|
||||
console.log(viewbox);
|
||||
return <G
|
||||
{...this.props}
|
||||
x={x}
|
||||
@@ -26,6 +28,7 @@ class ViewBox extends Component{
|
||||
scaleY={scaleY}
|
||||
preserveAspectRatio={null}
|
||||
viewbox={null}
|
||||
id={null}
|
||||
>
|
||||
{(!scaleX || !scaleY) ? null : this.props.children}
|
||||
</G>;
|
||||
|
||||
Reference in New Issue
Block a user