7 releases

0.2.1 Sep 24, 2021
0.2.0 Sep 23, 2021
0.1.4 Sep 22, 2021
0.1.2 Aug 10, 2021
0.1.1 Jul 19, 2021

#880 in GUI

Download history 26/week @ 2024-12-14 2/week @ 2025-01-04 18/week @ 2025-01-11 12/week @ 2025-01-18 9/week @ 2025-01-25 27/week @ 2025-02-01 30/week @ 2025-02-08 14/week @ 2025-02-15 29/week @ 2025-02-22 19/week @ 2025-03-01 22/week @ 2025-03-08 29/week @ 2025-03-15 28/week @ 2025-03-22 9/week @ 2025-03-29

88 downloads per month

MIT license

5KB

fltk-flex

Note to current and future users:

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.

Usage

[dependencies]
fltk = "1.2"
fltk-flex = "0.2"

Example

use fltk::{prelude::*, *};
use fltk_flex::Flex;

fn main() {
    let a = app::App::default().with_scheme(app::Scheme::Gtk);
    let mut win = window::Window::default().with_size(400, 300);
    let mut flex = Flex::default().size_of_parent().column();
    let _expanding = button::Button::default().with_label("Expanding");
    let mut normal = button::Button::default().with_label("Normal");
    flex.set_size(&mut normal, 30);
    flex.end();
    win.end();
    win.make_resizable(true);
    win.show();
    a.run().unwrap();
}

Dependencies

~14MB
~309K SLoC