mirror of
https://github.com/ratatui/ratatui.git
synced 2025-10-02 15:25:54 +00:00

```shell
cargo run --example demo2 --features="crossterm widget-calendar"
```
Press `d` to activate destroy mode and Enjoy!

Vendors a copy of tui-big-text to allow us to use it in the demo.
19 lines
228 B
Rust
19 lines
228 B
Rust
use anyhow::Result;
|
|
pub use app::*;
|
|
pub use colors::*;
|
|
pub use root::*;
|
|
pub use term::*;
|
|
pub use theme::*;
|
|
|
|
mod app;
|
|
mod big_text;
|
|
mod colors;
|
|
mod root;
|
|
mod tabs;
|
|
mod term;
|
|
mod theme;
|
|
|
|
fn main() -> Result<()> {
|
|
App::run()
|
|
}
|