rlvgl 0.1.7

A modular, idiomatic Rust reimplementation of the LVGL graphics library for embedded and simulator use.
Documentation
//! Top-level menu group definitions for rlvgl-creator UI.
//!
//! Provides grouping of commands into user-facing menus.

/// Menu group names with their associated command labels.
pub const MENU_GROUPS: &[(&str, &[&str])] = &[
    (
        "Assets",
        &[
            "Init",
            "Scan",
            "Check",
            "Vendor",
            "Convert",
            "Preview",
            "Add Asset",
            "Scan Convert Preview",
        ],
    ),
    (
        "Build",
        &[
            "AddTarget",
            "Sync",
            "Scaffold",
            "Fonts Pack",
            "Svg",
            "Apng",
            "Schema",
        ],
    ),
    (
        "Deploy",
        &["Lottie Import", "Lottie CLI", "Run Preset", "Save Preset"],
    ),
];