textual 1.0.0-dev

A reactive TUI framework inspired by the Python Textual library
Documentation
mod app_root;
mod center;
mod center_middle;
mod constrained;
mod container;
mod frame;
mod grid;
mod horizontal;
mod horizontal_group;
mod horizontal_scroll;
mod item_grid;
mod middle;
mod node;
mod overlay;
mod panel;
mod right;
mod row;
mod scroll_core;
mod scroll_view;
mod scrollable_container;
mod styled;
mod vertical;
mod vertical_group;
mod vertical_scroll;

pub use app_root::AppRoot;
pub(crate) use app_root::{
    APP_ROOT_HSCROLLBAR_ID, APP_ROOT_SCROLLBAR_CORNER_ID, APP_ROOT_VSCROLLBAR_ID,
};
pub use center::Center;
pub use center_middle::CenterMiddle;
pub use constrained::Constrained;
pub use container::Container;
pub use frame::Frame;
pub use grid::Grid;
pub use horizontal::Horizontal;
pub use horizontal_group::HorizontalGroup;
pub use horizontal_scroll::HorizontalScroll;
pub use item_grid::ItemGrid;
pub use middle::Middle;
pub use node::Node;
pub use overlay::Overlay;
pub use panel::Panel;
pub use right::Right;
pub use row::{Row, RowAlign};
pub use scroll_core::ScrollCore;
pub use scroll_view::ScrollView;
pub(crate) use scroll_view::{
    SCROLL_VIEW_HSCROLLBAR_ID, SCROLL_VIEW_SCROLLBAR_CORNER_ID, SCROLL_VIEW_VSCROLLBAR_ID,
};
pub use scrollable_container::ScrollableContainer;
pub use styled::Styled;
pub use vertical::Vertical;
pub use vertical_group::VerticalGroup;
pub use vertical_scroll::VerticalScroll;