appy 0.1.6

Declarative UI framework with native rendering
Documentation
1
2
3
4
5
6
7
8
use appy::{components::*, types::*, *};

#[main_window]
pub fn app() -> Elements {
    apx! {
        <Text text="Hello World"/>
    }
}