iced_web
iced_web copied to clipboard
pick_list can't be imported when using web back end
use iced::{pick_list, PickList};
Compiles when targeting linux but not targeting the web.
this works: cargo build
this does not work: cargo build --target wasm32-unknown-unknown
this is the error:
error[E0432]: unresolved imports `iced::pick_list`, `iced::PickList`
--> core/src/main.rs:9:12
|
9 | use iced::{pick_list, PickList};
| ^^^^^^^^^ ^^^^^^^^ no `PickList` in the root
| |
| no `pick_list` in the root
The PickList widget isn't yet implemented on the web backend.
By the way, I'm currently working on a port of the picklist to the web backend.