flandres 0.3.1

fltk widgets adapted for Android
Documentation
1
2
3
4
5
6
7
8
9
10
11
use fltk::{prelude::*, *};

fn main() {
    let app = app::App::default();
    let mut win = flandres::window();
    let _inp = flandres::inout_widget::<input::Input>(200, 200, 200, 100, "");
    let _but: button::Button = flandres::widget(200, 600, 200, 100, "Click Me!");
    win.end();
    win.show();
    app.run().unwrap();
}