Add text input operations

This commit is contained in:
Cory Forsstrom 2022-11-11 08:43:36 -08:00
parent 23299a555f
commit c4bca3f2af
8 changed files with 215 additions and 1 deletions

View file

@ -260,6 +260,14 @@ where
) {
self.operation.focusable(state, id);
}
fn text_input(
&mut self,
state: &mut dyn widget::operation::TextInput,
id: Option<&widget::Id>,
) {
self.operation.text_input(state, id);
}
}
self.with_element(|element| {