stylang 0.1.0

A group of graphical interface description languages that separates style/class from behavior and layout
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The intermediate representation of the stylang.

mod attrs;
pub use attrs::*;

mod layout;
pub use layout::*;

mod value;
pub use value::*;

mod nav;
pub use nav::*;

mod views;
pub use views::*;