Add empty select_all implementation for TextInput in iced_web

This commit is contained in:
Héctor Ramón Jiménez 2021-07-22 20:32:54 +07:00
parent 57247106b9
commit 29cc840cfa
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -232,4 +232,9 @@ impl State {
// TODO
Self::default()
}
/// Selects all the content of the [`TextInput`].
pub fn select_all(&mut self) {
// TODO
}
}