mirui 0.4.0

A lightweight, no_std ECS-driven UI framework for embedded, desktop, and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

pub mod app;
pub mod backend;
pub mod components;
pub mod draw;
pub mod ecs;
pub mod event;
pub mod layout;
pub mod plugin;
pub mod plugins;
pub mod types;
pub mod widget;