uzor 1.2.1

Core UI engine — geometry, interaction, input state
1
2
3
4
5
6
7
8
9
10
11
//! Sticky chevron atomic — overlay attached to one edge / corner of a
//! host. Owns its own rect + hit zone; clicks go to the chevron, not
//! the host.

pub mod render;
pub mod types;

pub use render::{draw_sticky_chevron, register_sticky_chevron};
pub use types::{
    place_sticky_chevron, StickyAnchor, StickyChevronSpec, StickyVisibility,
};