Registry / other / fltk
library1.5.23rscratesunverified

Rust bindings for the FLTK GUI library, enabling cross-platform desktop applications.

# Cargo.toml [dependencies] fltk = "1.5.23"
INSTALL
IMPORT
SIG · FLTK
F
fltk
otherrustv1.5.23
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

app
use fltk::app;

Create a simple FLTK window.

use fltk::{app, window::Window}; fn main() { let app = app::App::default(); let mut win = Window::new(100, 100, 400, 300, "Hello"); win.end(); win.show(); app.run().unwrap(); }
Debug
Known issues
gotchaFLTK requires the C++ FLTK library to be installed on the system.
fix
Install FLTK via your package manager (e.g., apt install libfltk1.3-dev on Ubuntu).
affects: *
Upgrade
Version history
1.5.23latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
fltk — cargo add fltk · libregistry