diff options
Diffstat (limited to 'examples/lazy/src/main.rs')
-rw-r--r-- | examples/lazy/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/lazy/src/main.rs b/examples/lazy/src/main.rs index 55b13bcf..c6baa6a1 100644 --- a/examples/lazy/src/main.rs +++ b/examples/lazy/src/main.rs @@ -1,10 +1,9 @@ use iced::theme; use iced::widget::{ - button, column, horizontal_space, pick_list, row, scrollable, text, + button, column, horizontal_space, lazy, pick_list, row, scrollable, text, text_input, }; use iced::{Element, Length, Sandbox, Settings}; -use iced_lazy::lazy; use std::collections::HashSet; use std::hash::Hash; |