pub fn text_editor<'a, Message, Theme, Renderer>(
    content: &'a Content<Renderer>,
) -> TextEditor<'a, PlainText, Message, Theme, Renderer>Expand description
Creates a new TextEditor.
Text editors display a multi-line text input for text editing.
ยงExample
use iced::widget::text_editor;
struct State {
   content: text_editor::Content,
}
#[derive(Debug, Clone)]
enum Message {
    Edit(text_editor::Action)
}
fn view(state: &State) -> Element<'_, Message> {
    text_editor(&state.content)
        .placeholder("Type something here...")
        .on_action(Message::Edit)
        .into()
}
fn update(state: &mut State, message: Message) {
    match message {
        Message::Edit(action) => {
            state.content.perform(action);
        }
    }
}