fret-ui 0.1.0

Mechanism-layer UI engine for Fret with tree, layout, focus, routing, and interaction contracts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod layout;
mod model;
mod style;
mod widget;

#[allow(unused_imports)]
pub use layout::ResizablePanelGroupLayout;
pub use style::ResizablePanelGroupStyle;
pub use widget::BoundResizablePanelGroup;

pub(crate) use layout::compute_resizable_panel_group_layout;
pub(crate) use model::{apply_handle_delta, fractions_from_sizes};

#[cfg(test)]
mod tests;