dardan_ui 0.1.1

A simple GUI Toolkit based on SDL2. The goal is for it to be easy to use and be similar to GUI Toolkits for OO languages.
Documentation
1
2
3
4
5
6
7
extern crate dardan_ui;

use dardan_ui::UiApp;

pub fn main() {
    UiApp::new().run();
}