use yakui::widgets::Text; use yakui::{column, text, Color}; pub fn run() { column(|| { text(32.0, "Default Font"); let mut text = Text::new(32.0, "Custom Font"); text.style.font = "monospace".into(); text.style.color = Color::GREEN; text.show(); }); } fn main() { bootstrap::start(run as fn()); }