ling-ui 2030.0.0

Ling UI framework — retained-mode widgets and flex layout
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ling-ui — retained-mode UI widgets and flex layout for Ling.

pub mod widget;
pub mod layout;
pub mod event;
pub mod renderer;

pub use widget::{View, Widget, Label, Button};
pub use layout::{FlexDirection, LayoutNode, Style, simple_layout};
pub use event::Event;
pub use renderer::SoftwareRenderer;

pub const VERSION: &str = env!("CARGO_PKG_VERSION");