mirui 0.1.1

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
#![no_std]

extern crate alloc;

pub mod app;
pub mod backend;
pub mod draw;
pub mod ecs;
pub mod layout;
pub mod types;
pub mod widget;