Module table

Module table 

Source
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.
TableColumn
Represents a column in a table.
TableConfig
Configuration for a table component.

Functions§

col
Convenience constructor for creating a single table column.
table
Convenience constructor for building a Table from column data.