summaryrefslogtreecommitdiffstats
path: root/src/tuice/mod.rs
blob: ff5fe5b1f417af32777a4e84da6d8e4b634abd1b (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
//! tuice is a wrapper around tui-rs that expands upon state management and
//! event handling.
//!
//! tuice is inspired by a **ton** of other libraries and frameworks, like:
//! - Iced
//! - [crochet](https://github.com/raphlinus/crochet)
//! - Flutter
//! - React
//! - Yew

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::*;