summaryrefslogtreecommitdiffstats
path: root/src/tuine/mod.rs
blob: f7ec3ede6b171c9e5d1c96a3b0355859326b4c73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! tuine is a wrapper around tui-rs that expands on it with state management and
//! event handling.
//!
//! tuine is inspired by a **ton** of other libraries and frameworks, like:
//!
//! - [Crochet](https://github.com/raphlinus/crochet)
//! - [Druid](https://github.com/linebender/druid)
//! - [Flutter](https://flutter.dev/)
//! - [Iced](https://github.com/iced-rs/iced)
//! - [React](https://reactjs.org/)
//! - [Yew](https://yew.rs/)

mod tui_rs;

pub mod component;
pub use component::*;

pub mod event;
pub use event::*;

pub mod application;
pub use application::*;

pub mod runtime;
pub use runtime::RuntimeEvent;

pub mod layout;
pub use layout::*;

pub mod element;
pub use element::*;

pub mod context;
pub use context::*;

pub mod screen;
pub use screen::*;

pub mod key;
pub use key::*;

pub mod state;
pub use state::*;