ratkit 0.2.16

A comprehensive collection of reusable TUI components for ratatui including resizable splits, tree views, markdown rendering, toast notifications, dialogs, and terminal embedding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Interactive CodeWidget demo with pane, dev bar, and sample Rust source.
//!
//! Run with:
//! `cargo run --example code_widget_code_widget_demo --features code-widget`

#[path = "code_widget_demo/app.rs"]
mod app;
#[path = "code_widget_demo/input.rs"]
mod input;
#[path = "code_widget_demo/sample.rs"]
mod sample;

/// Runs the interactive CodeWidget sample.
fn main() -> std::io::Result<()> {
    app::run_demo()
}