mirui 0.45.0

A lightweight, no_std ECS-driven UI framework for embedded, desktop, and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
pub mod components;
pub mod system;

pub use components::{ScrollAxis, ScrollConfig, ScrollDelta, ScrollOffset, TouchAction};
pub(crate) use system::scroll_system_with_target;
pub use system::{
    ScrollBounds, ScrollDragState, ScrollSpring, scroll_bounds, scroll_inertia_system,
    scroll_system,
};