bevyuistyle_builder

crates.io MIT/Apache 2.0 crates.io

Experimental Bevy UI helper extension methods.

Usage

Add the dependency to your project:

cargo add bevy_ui_style_builder

Then the following example draws a red rectangle in the middle of the window:

```rust use bevy::prelude::; use bevy_ui_style_builder::prelude::;

fn spawnexample( mut commands: Commands, ) { commands.spawn(Camera2dBundle::default()); commands.spawn(node() .width(Val::Percent(100.0)) .height(Val::Percent(100.0)) .justifycontentcenter() .alignitemscenter() ).withchildren(|builder| { builder.spawn(node() .width(Val::Px(150.0)) .height(Val::Px(100.0)) .color(Color::RED) ); }); }

fn main() { App::new() .addplugins(DefaultPlugins) .addstartupsystem(spawnexample) .run(); } ```

There is a larger example based on Bevy's UI example in the examples folder. You can run it with:

cargo run --example ui.rs