rlvgl-widgets 0.1.3

A modular, idiomatic Rust reimplementation of the LVGL graphics library for embedded and simulator use.
Documentation
//! Collection of built-in widgets for the `rlvgl` toolkit.
#![no_std]
#![deny(missing_docs)]

extern crate alloc;

/// Clickable button widget.
pub mod button;
/// Checkbox widget for boolean options.
pub mod checkbox;
/// Container widget for layout grouping.
pub mod container;
/// Image display widget.
pub mod image;
/// Text label widget.
pub mod label;
/// Scrollable list widget.
pub mod list;
/// Progress bar widget.
pub mod progress;
/// Slider widget for numeric input.
pub mod slider;