[][src]Macro egui::label

macro_rules! label {
    ($fmt:expr) => { ... };
    ($fmt:expr, $($arg:tt)*) => { ... };
}

Shortcut for creating a Label widget.

Usage: label!("Foo: {}", bar) equivalent to Label::new(format!("Foo: {}", bar)).