#How can I use a window created with TAO ?
1 messages · Page 1 of 1 (latest)
You can pass in a window builder to the config with this method: https://docs.rs/dioxus-desktop/0.6.0-alpha.2/dioxus_desktop/struct.Config.html#method.with_window
The configuration for the desktop application.
You can't create the window and then use dioxus inside the window, but if you just need to change builder settings, that should work. You can also access the built version of the window inside the dioxus context if you need to
That's sad 😦
I really need to create the window myself.
In the new version of TAO you can create a window based on a gtk_window
By doing it this way it should be possible to create a layershell in wayland.
(Layershell are used to create desktop shell components)
But at least dioxus codebase looks way more simpler than the code base of tauri, I think that I should be able to make it work