5 unstable releases

0.3.1 May 3, 2021
0.3.0 Apr 17, 2021
0.2.1 Feb 19, 2021
0.2.0 Feb 11, 2021
0.1.0 Sep 30, 2020

#1190 in GUI

Download history 7/week @ 2024-02-19 4/week @ 2024-02-26 82/week @ 2024-04-01

82 downloads per month

MIT license

4KB

flandres

fltk widgets adapted for Android.

This crate provides public wrapper functions which return fltk widgets. These widgets are styled and adapted to Android screen resolution.

Usage

Add flandres to your fltk applications.

[dependencies]
fltk = "1"
flandres = "0.3"
    use fltk::{prelude::*, *};
    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!");

lib.rs:

flandres

fltk widgets adapted for Android.

This crate provides public wrapper functions which return fltk widgets. These widgets are styled and adapted to Android screen resolution.

Usage

Add flandres to your fltk applications.

[dependencies]
fltk = "1"
flandres = "0.3"
use fltk::*;
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!");

Dependencies

~14MB
~302K SLoC