iced_web icon indicating copy to clipboard operation
iced_web copied to clipboard

pick_list can't be imported when using web back end

Open jgarvin opened this issue 5 years ago • 2 comments

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

jgarvin avatar Dec 27 '20 22:12 jgarvin

The PickList widget isn't yet implemented on the web backend.

hecrj avatar Dec 29 '20 08:12 hecrj

By the way, I'm currently working on a port of the picklist to the web backend.

MonliH avatar May 07 '21 13:05 MonliH