layuit 1.2.2

A UI layout library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Re-exports the most common and uncommonly-named types.
//!
//! Some types, like [`Minimum`] are not exported as they may conflict with other names in scope.
//!
//! [`Minimum`]: crate::padding::Minimum

pub use crate::overlap::Overlap;
pub use crate::padding::Margin;
pub use crate::stacks::{HStack, VStack};
pub use crate::visibility::Hider;
pub use crate::{Alignment, Anchor, NodeCache, Rect, UiNode, UiTree};