rlvgl_widgets/lib.rs
1//! Collection of built-in widgets for the `rlvgl` toolkit.
2#![no_std]
3#![deny(missing_docs)]
4
5extern crate alloc;
6
7/// Clickable button widget.
8pub mod button;
9/// Checkbox widget for boolean options.
10pub mod checkbox;
11/// Container widget for layout grouping.
12pub mod container;
13/// Image display widget.
14pub mod image;
15/// Text label widget.
16pub mod label;
17/// Scrollable list widget.
18pub mod list;
19/// Progress bar widget.
20pub mod progress;
21/// Radio button widget for mutually exclusive options.
22pub mod radio;
23/// Slider widget for numeric input.
24pub mod slider;
25/// Binary on/off switch widget.
26pub mod switch;