flip-ui 0.1.3

Rust integration for handling and compiling the UI built via the UI Flip UI Builder
Documentation
#![no_main]
#![no_std]

use flip_ui::flip_ui;

flip_ui! {
    MyApp,
    "tests/main.json",
    close => close,
    next => next,
    back => back,
    none => none,
}

#[flipperzero_test::tests]
pub mod tests {
    use crate::MyApp;

    #[test]
    fn test() {
        let mut app = MyApp::create();
        app.show();
    }
}

flipperzero_test::tests_runner!(name = "Some tests", [crate::tests]);