#flexbox #layout #design #graphics #responsive

aloe-flexbox

A Rust library for implementing advanced flexbox layouts in GUI. The crate provides a systematic way to control layout flexibility, alignment, and responsiveness akin to web flexbox techniques. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 3, 2025

#22 in #flexbox


Used in 2 crates (via aloe-ex-gui)

GPL-3.0 license

1MB
9K SLoC

aloe-flexbox

A comprehensive Rust library for managing and applying flexbox layout principles in GUI applications. With aloe-flexbox, you can organize your application's graphical components with the same flexibility and power given by CSS Flexbox, allowing for dynamic, responsive interfaces that easily adapt to different screen sizes and resolutions.

Features

  • Flexible Alignment Options: Utilize options for alignItems, alignSelf, justifyContent, and more to tailor the layout to specific needs.
  • Direction and Wrapping Control: Control layout flow with flexDirection and manage item wrapping with flexWrap.
  • Parameterization of Layout: Each FlexBox can be customized with justify content, direction, and wrapping parameters suited to your design intent, ideal for constructing advanced user interfaces.

Usage

Here is a basic example illustrating how to set up a FlexBox:

use aloe_flexbox::{FlexBox, FlexItem, FlexBoxDirection, FlexBoxAlignItems, FlexBoxWrap, FlexBoxJustifyContent};

fn main() {
    let mut flexbox = FlexBox::new(
        FlexBoxDirection::row,
        FlexBoxWrap::wrap, 
        FlexBoxAlignContent::stretch,
        FlexBoxAlignItems::center, 
        FlexBoxJustifyContent::spaceBetween,
    );

    let item1 = FlexItem::default().with_flex_with_grow(1.0);
    flexbox.items.push(item1);

    flexbox.perform_layout_with_target_area(Rectangle::new(0.0, 0.0, 500.0, 300.0));
}

Documentation

Further documentation can be found at Rust Docs.

License

This project is licensed under the GPL-3.0 License.

Note: This README file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project.

Dependencies

~25–39MB
~600K SLoC