hyle-dioxus-native 0.1.1

Native (non-WASM) Dioxus components for hyle — table, form, and filter UI primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Dioxus UI components for hyle.
//!
//! Provides `HyleTable`, `HyleTableBody`, `HyleTableFilters`, `HyleTablePagination`,
//! and `HyleFormFields` — the Dioxus equivalents of `@tty-pt/hyle-react-dom`.

mod form;
mod table;

pub use form::HyleFormFields;
pub use table::{HyleTable, HyleTableBody, HyleTableFilters, HyleTablePagination, HyleTablePanel};