DEV Community

Discussion on: Create a desktop app in Rust using Tauri and Yew

Collapse
 
sshine profile image
Simon Shine

Thanks for the great tutorial.

For those who try this tutorial with yew 0.20.0 and not 0.19.3 as the tutorial was made for, it seems that yew::start_app::<App>(); is no longer available. Instead, taken from the Yew 0.20 starter template:

fn main() {
    yew::Renderer::<App>::new().render();
}
Enter fullscreen mode Exit fullscreen mode