Input add set_placeholder method (#131)
This commit is contained in:
parent
e073b60bc1
commit
283b319edd
1 changed files with 5 additions and 0 deletions
|
|
@ -261,6 +261,11 @@ impl TextInput {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Set the placeholder text without ownership.
|
||||||
|
pub fn set_placeholder(&mut self, placeholder: impl Into<SharedString>) {
|
||||||
|
self.placeholder = placeholder.into();
|
||||||
|
}
|
||||||
|
|
||||||
/// Set true to show the clear button when the input field is not empty.
|
/// Set true to show the clear button when the input field is not empty.
|
||||||
pub fn cleanable(mut self, cleanable: bool) -> Self {
|
pub fn cleanable(mut self, cleanable: bool) -> Self {
|
||||||
self.cleanable = cleanable;
|
self.cleanable = cleanable;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue