Hi,
I'm trying to compile the "svg" example using the newest release. With the "0.1.0-beta" release, it works as expected. With the new release, however, I run into the following error:
error[E0277]: the trait bound
iced_wgpu::renderer::Renderer: iced_native::widget::svg::Rendereris not satisfied
with the explanation
the trait
iced_native::widget::svg::Rendereris not implemented foriced_wgpu::renderer:: Renderer
I hope we can work this out. Please tell me if more information is needed :)
How are you exactly compiling it? cargo run --package svg works for me.
If you copied the example into your own project, you may need to enable the svg feature (I should document this!).
Ah, yes. Enabling the svg feature did the trick. Thanks for the quick help!
Most helpful comment
How are you exactly compiling it?
cargo run --package svgworks for me.If you copied the example into your own project, you may need to enable the
svgfeature (I should document this!).