incremental

Function incremental 

Source
pub fn incremental() -> Result<Crossterm<IncrementalPainter>>
Expand description

Creates a new backend with an incremental painter. It only draws those parts of the terminal that have changed since last drawn.

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