I think you mean to say "no documentation". First of all, what version of iced are you using? I made a simple GUI app in version 0.7 but with the current version of 0.10 it's broken. Unfortunately if you can't solve your problem using the examples repo your probably out of luck until iced is more stable and better documented.
Rust Programming
I decided to give up. Iced just isn't a mature enough gui framework and the alternatives don't look great either.
I restarted my plug in project using JUCE tonight and I already have the gui started. It's c++, so that sucks, but oh well
What GUI framework did you end up using in C++? Qt?
I started trying out JUCE. It's a framework for making audio plugins (VSTs). Though I think I'm going to give the rust solution another shot with Vizia.
Vizia looks really nice, but the book only covers a counter example... Sadly, this is the state of most Rust GUI libraries at the moment...
Right? What's with that? It's like everyone gets their crate to the minimal working state and stops workings on it.
I'd like to hear your thoughts about Tauri and Dioxus.
I know react so Dioxus was easy for me to pick up. I haven't tried tauri but I know React, Vue and Svelte pretty well so I assume I'd be golden with it as well
Have no experience with iced but interesting. Can you share a minimal example of what you'd like to do? At least the source code of Sandbox
reads fn view(&self)
.
I don't have a minimal example yet because I haven't been able to get it working. The framework I'm using (nih-plug) uses a specific version of iced though, so I'm going to try to just model mine off their example. I don't think it uses the pure version.
Starting from a working example is always a good idea :) then once things start breaking you might have a clue why.