Skip to main content

text

Function text 

Source
pub fn text<'a, Theme>(text: impl IntoFragment<'a>) -> Text<'a, Theme>
where Theme: Catalog + 'a,
Expand description

Creates a new Text widget with the provided content.

ยงExample

use iced::widget::text;
use iced::color;

enum Message {
    // ...
}

fn view(state: &State) -> Element<'_, Message> {
    text("Hello, this is iced!")
        .size(20)
        .color(color!(0x0000ff))
        .into()
}