reratui 1.1.0

A modern, reactive TUI framework for Rust with React-inspired hooks and components, powered by ratatui
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Built-in components for common UI patterns.
//!
//! This module provides ready-to-use components that implement common
//! patterns like scrollable containers, virtualized lists, and more.

mod scroll_view;

pub use scroll_view::{
    ScrollIndicator, ScrollView, ScrollViewItemProps, ScrollViewItems, ScrollViewProps,
    VirtualBuffer,
};