Skip to main content

ling_ui/
lib.rs

1//! ling-ui — retained-mode UI widgets and flex layout for Ling.
2
3pub mod widget;
4pub mod layout;
5pub mod event;
6pub mod renderer;
7
8pub use widget::{View, Widget, Label, Button};
9pub use layout::{FlexDirection, LayoutNode, Style, simple_layout};
10pub use event::Event;
11pub use renderer::SoftwareRenderer;
12
13pub const VERSION: &str = env!("CARGO_PKG_VERSION");