React-native-svg: RTL Support

Created on 17 Oct 2017  路  3Comments  路  Source: react-native-svg/react-native-svg

I wonder if there is RTL support like in android there is "android:autoMirrored" ?

Most helpful comment

If you want to mirror something, you can use transform translate and scale(-1,1) as in:

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Basic_Transformations -->

<svg width="100" height="100">
聽   <g transform="translate(50,0) scale(-1,1)">
        <rect width="5" height="5" />
        <text><tspan y="15" >abc</tspan></text>
    </g>
</svg>

https://jsfiddle.net/yeuj98au/

All 3 comments

@amorenew I've done a bit of work on implementing the text layout algorithm from svg 2.0, which supports bidi text, but not currently working on it:
https://github.com/react-native-community/react-native-svg/blob/6.0.0/android/src/main/java/com/horcrux/svg/TextLayoutAlgorithm.java

https://www.w3.org/TR/SVG2/text.html#TextLayoutAlgorithm

There is actually not that much left to it, only a few parts where the spec needs to be translated/expressed as code, and then taken into use in
https://github.com/react-native-community/react-native-svg/blob/6.0.0/android/src/main/java/com/horcrux/svg/TSpanShadowNode.java

@msand the text SVG could be png images but the main thing is mirroring the shapes to right

If you want to mirror something, you can use transform translate and scale(-1,1) as in:

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Basic_Transformations -->

<svg width="100" height="100">
聽   <g transform="translate(50,0) scale(-1,1)">
        <rect width="5" height="5" />
        <text><tspan y="15" >abc</tspan></text>
    </g>
</svg>

https://jsfiddle.net/yeuj98au/

Was this page helpful?
0 / 5 - 0 ratings

Related issues

chetankotkar picture chetankotkar  路  3Comments

neiker picture neiker  路  3Comments

a-c-sreedhar-reddy picture a-c-sreedhar-reddy  路  3Comments

alexandergunnarson picture alexandergunnarson  路  4Comments

fjsun123 picture fjsun123  路  3Comments