flutter_svg icon indicating copy to clipboard operation
flutter_svg copied to clipboard

Bad parsing on text with tspan

Open EArminjon2 opened this issue 3 years ago • 1 comments

Got following : Capture d’écran 2022-09-02 à 11 42 54 But expected that : Capture d’écran 2022-09-02 à 11 43 11

<svg width="185" height="43" viewBox="0 0 185 43" xmlns="http://www.w3.org/2000/svg">
    <g fill="none" fill-rule="evenodd">
        <text x="35.081" y="15" font-family="OpenSans-Italic, Open Sans" font-size="14" font-style="italic" fill="#333">
            π( D² - d² )( N - N
            <tspan y="15" font-size="10">u</tspan>
            )
        </text>
    </g>
</svg>

SVG standard : https://developer.mozilla.org/fr/docs/Web/SVG/Element/tspan

EArminjon2 avatar Sep 02 '22 09:09 EArminjon2

Temporary fix on my side.... : (ugly)

<svg width="185" height="43" viewBox="0 0 185 43" xmlns="http://www.w3.org/2000/svg">
    <g fill="none" fill-rule="evenodd">
        <text x="35.081" y="15" font-family="OpenSans-Italic, Open Sans" font-size="14" font-style="italic" fill="#333">
            π( D² - d² )( N - N
            <tspan y="15" font-size="10">u
                <tspan y="15" font-size="14">)</tspan>
            </tspan>
        </text>
    </g>
</svg>

ghost avatar Sep 02 '22 09:09 ghost

I started cleaning up text a few days ago and think I can address this now.

dnfield avatar Mar 01 '23 21:03 dnfield