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

@ -93,4 +93,12 @@ where
) {
self.operation.scrollable(state, id);
}
fn text_input(
&mut self,
state: &mut dyn operation::TextInput,
id: Option<&Id>,
) {
self.operation.text_input(state, id);
}
}