embedded_ui/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3pub mod action;
4pub mod align;
5pub mod app;
6pub mod block;
7pub mod color;
8pub mod el;
9pub mod event;
10pub mod focus;
11pub mod font;
12pub mod helpers;
13pub mod icons;
14pub mod kit;
15mod layer;
16pub mod layout;
17mod log;
18pub mod padding;
19pub mod render;
20pub mod size;
21pub mod state;
22pub mod style;
23pub mod ui;
24pub mod value;
25pub mod widget;
26
27// TODO: Feature to switch to fixed-sized heapless
28#[macro_use]
29extern crate alloc;
30
31#[cfg(not(feature = "no_std"))]
32extern crate std;