lvgl 0.6.2

LVGL bindings for Rust. A powerful and easy-to-use embedded GUI with many widgets, advanced visual effects (opacity, antialiasing, animations) and low memory requirements (16K RAM, 64K Flash).
Documentation
//! Widget-specific features
//!
//! Widgets represent individual elements on the screen. Each widget has
//! associated information, namely its parent widget and its styling data. A
//! widget with no parent will have a screen as its parent. Style data is
//! inherited from parent objects by default.

//mod arc;
mod bar;
mod label;
mod meter;

include!(concat!(env!("OUT_DIR"), "/generated.rs"));

use crate::NativeObject;
//pub use arc::*;
pub use bar::*;
pub use label::*;
pub use meter::*;