ratatui-reactive 0.6.0

A minimalistic framework for building TUI applications using fine-grained reactivity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod backend;
mod delay;
mod executor;
mod futures;
mod router;
mod timer;

pub use backend::*;
pub use delay::delayed_signal;
pub use executor::{sleep, spawn, spawn_local};
pub use futures::{create_progress, create_resource};
pub use router::{Route, Router, provide_router};
pub use timer::{create_interval, create_timeout};