mirui 0.45.0

A lightweight, no_std ECS-driven UI framework for embedded, desktop, and WebAssembly
Documentation
pub mod assets;
pub mod background_blur;
pub mod button;
pub mod checkbox;
pub mod drop_shadow;
pub mod icon;
pub mod image;
pub mod lazy_list;
pub mod mirror;
pub mod progress_bar;
pub mod slider;
pub mod switch;
pub mod tab_pages;
pub mod tabbar;
pub mod temporal_mix;
pub mod text;
pub mod text_input;
pub mod transform;
pub mod transform_3d;

pub use background_blur::BackgroundBlur;
pub use button::{Button, ButtonSize};
pub use checkbox::Checkbox;
pub use drop_shadow::{DropGlow, DropShadow};
pub use icon::Icon;
pub use image::{Image, ImageSource};
pub use lazy_list::{LazyList, LazyListBinder, LazyListPool};
pub use mirror::MirrorOf;
pub use progress_bar::ProgressBar;
pub use slider::Slider;
pub use switch::Switch;
pub use tab_pages::TabContent;
pub use tabbar::TabBar;
pub use temporal_mix::TemporalMix;
pub use text::{
    FontFeatureCapacityError, FontFeatures, LanguageTag, LanguageTagError, ParagraphStyle,
    PathCaretHit, PathSelectionRibbon, PathTextGeometry, PathTextGeometryError, ShapingPolicy,
    StaticGlyphRun, Text, TextAlign, TextContent, TextDirection, TextOverflow, TextVerticalAlign,
    TextWrap,
};
pub use text_input::{Placeholder, TextInput, TextInputEvent, TextInputHandler};
pub use transform::{WidgetTransform, set_transform};
pub use transform_3d::{TransformOrigin, WidgetTransform3D};