Expand description
Provides components for creating and displaying data in a tabular format.
The primary component is the Table, which is configured with a collection
of TableColumns. Each TableColumn represents a vertical column in the
table and contains rows of Text content.
§Example
use waterui::component::table;
let table: table::Table<Vec<table::TableColumn>> = std::iter::empty::<table::TableColumn>().collect();
let _ = table;Structs§
- Table
- A tabular layout component composed of reactive text columns.
- Table
Column - Represents a column in a table.
- Table
Config - Configuration for a table component.