diff --git a/web/src/widget/text_input.rs b/web/src/widget/text_input.rs index bc2048a8d3..d61ee2fd83 100644 --- a/web/src/widget/text_input.rs +++ b/web/src/widget/text_input.rs @@ -232,4 +232,9 @@ impl State { // TODO Self::default() } + + /// Selects all the content of the [`TextInput`]. + pub fn select_all(&mut self) { + // TODO + } }