The Flex widget has been added to the fltk crate, under the group module. This repo mostly now serves the purpose of providing examples of usage!
A Rust port of FL_Flex, which provides a flexbox widget for FLTK.
toml
[dependencies]
fltk = "1.2"
fltk-flex = "0.2"
```rust use fltk::{prelude::*, *}; use fltk_flex::Flex;
fn main() { let a = app::App::default().withscheme(app::Scheme::Gtk); let mut win = window::Window::default().withsize(400, 300); let mut flex = Flex::default().sizeofparent().column(); let expanding = button::Button::default().withlabel("Expanding"); let mut normal = button::Button::default().withlabel("Normal"); flex.setsize(&mut normal, 30); flex.end(); win.end(); win.make_resizable(true); win.show(); a.run().unwrap(); } ```