Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tdryer/7guis-fltk-rs
Implementation of the 7GUIs tasks written in Rust with fltk-rs
https://github.com/tdryer/7guis-fltk-rs
7guis fltk gui rust
Last synced: 11 days ago
JSON representation
Implementation of the 7GUIs tasks written in Rust with fltk-rs
- Host: GitHub
- URL: https://github.com/tdryer/7guis-fltk-rs
- Owner: tdryer
- License: mit
- Created: 2021-03-17T02:24:39.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-08T06:30:07.000Z (11 months ago)
- Last Synced: 2024-12-10T23:50:14.194Z (21 days ago)
- Topics: 7guis, fltk, gui, rust
- Language: Rust
- Homepage:
- Size: 149 KB
- Stars: 31
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 7guis-fltk-rs
This is an implementation of [the 7GUIs tasks][0] written in [Rust][1] with
[fltk-rs][2] (bindings to [FLTK][3]).See [the fltk-rs README][4] for additional dependencies.
[0]: https://eugenkiss.github.io/7guis/
[1]: https://www.rust-lang.org/
[2]: https://github.com/MoAlyousef/fltk-rs
[3]: https://www.fltk.org/
[4]: https://github.com/fltk-rs/fltk-rs/blob/master/README.md#build-dependencies## counter
```
cargo run --bin counter
```![counter screenshot](screenshots/counter.png)
## temperature
```
cargo run --bin temperature
```![temperature screenshot](screenshots/temperature.png)
## flightbooker
```
cargo run --bin flightbooker
```![flightbooker screenshot](screenshots/flightbooker.png)
## timer
```
cargo run --bin timer
```![timer screenshot](screenshots/timer.png)
## crud
```
cargo run --bin crud
```![crud screenshot](screenshots/crud.png)
## circles
```
cargo run --bin circles
```![circles screenshot](screenshots/circles.png)
## cells
```
cargo run --bin cells
```![cells screenshot](screenshots/cells.png)