rlvgl-widgets 0.1.1

A modular, idiomatic Rust reimplementation of the LVGL graphics library for embedded and simulator use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Collection of built-in widgets for the `rlvgl` toolkit.
#![no_std]

extern crate alloc;

pub mod button;
pub mod checkbox;
pub mod container;
pub mod image;
pub mod label;
pub mod list;
pub mod progress;
pub mod slider;