I cannot import qr widget

error[E0432]: unresolved import iced::widget::qr_code
→ src/main.rs:1:47
|
1 | use iced::widget::{center, column, pick_list, qr_code, row, text, text_input};
| ^^^^^^^ no qr_code in widget

For more information about this error, try rustc --explain E0432.

You need to enable the qr_code feature flag.

1 Like

Ahh, thank you for help, exactly what I looked for !