DEV Community

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

Collapse
 
opensourcecheemsburgers profile image
Stephen Power

Excellent guide!

For anyone who may be wondering about async Tauri commands, they work the exact same as regular Tauri commands.

I spent way too long trying different ways of getting async to work when I just forgot to add the following to my tauri.conf.json file:

"withGlobalTauri": true
Enter fullscreen mode Exit fullscreen mode