full

Function full 

Source
pub fn full() -> Result<Crossterm<FullPainter>>
Expand description

Creates a new backend with a full painter. It redraws the whole canvas on every canvas.

fn main() -> zi_term::Result<()> {
    zi_term::full()?
        .run_event_loop(Text::with(TextProperties::new().content("Hello, world!")))
}