[][src]Attribute Macro uniui_gui::u_main

#[u_main]

Macros allows to mark function as main entry point for UniUi Application

uniui_gui crate have to be presented in the scope.

wasm_bindgen should not be presented in crate's dependencies list.

Example

#[uniui_gui::uni_main]
pub fn app_main(app: &mut uniui_gui::Application) {
    // ...
}