Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fltk-rs/flandres

fltk widgets adapted for android. Still wip.
https://github.com/fltk-rs/flandres

Last synced: about 2 months ago
JSON representation

fltk widgets adapted for android. Still wip.

Awesome Lists containing this project

README

        

# 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.
```toml
[dependencies]
fltk = "1"
flandres = "0.3"
```

```rust
use fltk::{prelude::*, *};
let mut win = flandres::window();
let _inp = flandres::inout_widget::(200, 200, 200, 100, "");
let _but: button::Button = flandres::widget(200, 600, 200, 100, "Click Me!");
```