1 2 3 4 5 6 7 8 9 10 11 12 13
//! # TUI Additions //! //! Additions to the TUI crate //! //!  /// Additional widgets (structs that impl `tui::widget::Widget`) #[cfg(feature = "widgets")] pub mod widgets; /// A declarative TUI framework #[cfg(feature = "framework")] pub mod framework;