You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it is better to add a renderer that only renders the SVG path code.render::<svg::PathCommand>().build() that produces a string like "M1 2h3v4h-3zM5 6h3v4h-3z", then you use this string inside your html! {} stuff. This package should not depend on yew.
I'm interested in adding yew support for this so it can be rendered as a
<QrCode style="..." on_click=.../>
svg component that accepts attributes.I have been using this crate in my yew application for quite a while now with some workaround:
Html::from_html_unchecked
provided by yew to turn it into a Html yew can recognizethe workaround code looks like the following:
The text was updated successfully, but these errors were encountered: