Text input (#143)

* update: iced 0.10.0

* wip: text input

* wip: text inputs with icons and buttons

* wip: improve text input

* refactor: text input styling

* chore: add scale factor

* chore(text_input): add winit example and do some cleanup
This commit is contained in:
Ashley Wulber 2023-08-23 10:59:26 -04:00 committed by GitHub
parent fcdefcd8fb
commit db8e791b87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 3017 additions and 4 deletions

View file

@ -504,6 +504,10 @@ impl State {
.size(20)
.id(INPUT_ID.clone())
.into(),
cosmic::widget::text_input("test", &self.entry_value)
.width(Length::Fill)
.on_input(Message::InputChanged)
.into(),
])
.into()
}