revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Virtual list - Efficiently render large lists with virtualization
//!
//! Only renders visible items plus overscan for performance.

/// Core virtual list implementation
pub mod core;
/// Helper functions for creating virtual lists
pub mod helper;
/// Traits for virtual list behavior
pub mod traits;
/// Type definitions for virtual list
pub mod types;
/// View rendering for virtual list
pub mod view;

pub use core::VirtualList;
pub use helper::virtual_list;
pub use types::*;