ratatui-core 0.1.0

Core types and traits for the Ratatui Terminal UI library. Widget libraries should use this crate. Applications should use the main Ratatui crate.
Documentation
1
2
3
4
5
6
7
8
9
#![warn(missing_docs)]
//! The `widgets` module contains the `Widget` and `StatefulWidget` traits, which are used to
//! render UI elements on the screen.

pub use self::stateful_widget::StatefulWidget;
pub use self::widget::Widget;

mod stateful_widget;
mod widget;