Feature request: Set window title on a per-window basis rather than per app

When using the Daemon functionality to have multiple windows in one’s app, the title is set once within the daemon helper function, and then gets displayed in the titlebar for all subsequent windows.

I’d like to be able to set a different window title for each window that I open in my app. Correct me if I’m wrong, but I don’t believe this is possible in the current API. How easy would it be to implement this?

The daemon helper function accepts anything that implements Title in iced::daemon - Rust

Ah hah - that’s what I was looking for, thank you for point it out.