rlvgl-ui 0.1.3

High-level UI components and theming for rlvgl.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT
//! Experimental `view!` macro for declarative widget trees.
//!
//! Bridges [`rlvgl-core`](rlvgl_core) widgets with constructors from
//! [`rlvgl-widgets`](rlvgl_widgets). Enabled via the optional `view`
//! feature flag.

#[macro_export]
macro_rules! view {
    ($($tt:tt)*) => {
        $($tt)*
    };
}