cedar 0.1.1

Reactive, functional library for creating GUI applications
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

mod program;
mod application;
mod window;

mod button;
mod label;
mod text_field;

mod widget;

pub use self::program::program;
pub use self::application::Application;
pub use self::window::{Window, Stack};

pub use self::button::Button;
pub use self::label::Label;
pub use self::text_field::TextField;