egui-table-kit 0.5.4

An extension for `egui` that brings batteries-included, filtering, highlighting, tree structures, and an action dispatch to your tables.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Table viewer for [egui](https://www.egui.rs/).
//!
//! See [`Table`].

pub mod columns;
mod split_scroll;
mod table;

pub use columns::Column;
pub use split_scroll::{SplitScroll, SplitScrollDelegate};
pub use table::{
    AutoSizeMode, CellInfo, HeaderCellInfo, HeaderRow, PrefetchInfo, Table, TableDelegate,
    TableState,
};