Struct iced_web::widget::text_input::TextInput[][src]

pub struct TextInput<'a, Message> { /* fields omitted */ }

A field that can be filled with text.

Example

enum Message {
    TextInputChanged(String),
}

let mut state = text_input::State::new();
let value = "Some text";

let input = TextInput::new(
    &mut state,
    "This is the placeholder...",
    value,
    Message::TextInputChanged,
);

Implementations

impl<'a, Message> TextInput<'a, Message>[src]

pub fn new<F>(
    state: &'a mut State,
    placeholder: &str,
    value: &str,
    on_change: F
) -> Self where
    F: 'static + Fn(String) -> Message, 
[src]

Creates a new TextInput.

It expects:

  • some State
  • a placeholder
  • the current value
  • a function that produces a message when the TextInput changes

pub fn password(self) -> Self[src]

Converts the TextInput into a secure password input.

pub fn width(self, width: Length) -> Self[src]

Sets the width of the TextInput.

pub fn max_width(self, max_width: u32) -> Self[src]

Sets the maximum width of the TextInput.

pub fn padding(self, units: u16) -> Self[src]

Sets the padding of the TextInput.

pub fn size(self, size: u16) -> Self[src]

Sets the text size of the TextInput.

pub fn on_submit(self, message: Message) -> Self[src]

Sets the message that should be produced when the TextInput is focused and the enter key is pressed.

pub fn style(self, style: impl Into<Box<dyn StyleSheet>>) -> Self[src]

Sets the style of the TextInput.

Trait Implementations

impl<'a, Message> From<TextInput<'a, Message>> for Element<'a, Message> where
    Message: 'static + Clone
[src]

impl<'a, Message> Widget<Message> for TextInput<'a, Message> where
    Message: 'static + Clone
[src]

Auto Trait Implementations

impl<'a, Message> !RefUnwindSafe for TextInput<'a, Message>

impl<'a, Message> !Send for TextInput<'a, Message>

impl<'a, Message> !Sync for TextInput<'a, Message>

impl<'a, Message> Unpin for TextInput<'a, Message> where
    Message: Unpin

impl<'a, Message> !UnwindSafe for TextInput<'a, Message>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.