pub fn text<'a, Theme>(text: impl IntoFragment<'a>) -> Text<'a, Theme>where Theme: Catalog + 'a,
Creates a new Text widget with the provided content.
Text
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() }