hyle-dioxus-native 0.2.0

Native (non-WASM) Dioxus components for hyle — table, form, and filter UI primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Dioxus UI components for hyle.
//!
//! Provides SSR-ready list & edit components, plus table/form primitives.

mod edit;
mod form;
mod list;
mod table;

pub use edit::item_to_source;
pub use form::HyleFormFields;
pub use list::{items_to_source, use_static_adapter};
pub use table::{HyleTable, HyleTableBody, HyleTableFilterBar, HyleTableFilters, HyleTablePagination, HyleTablePanel};