Bevy UI Builder

Simple ui builder, a simple wrapper of bevy_ui, fluent api design.

Warning

Under heavy development, cannot guarantee API stability.

Features

Basics

Construct ui hierarchy

before start, you need to know about bevy_ui 4 basic ui elements

ui builder has corresponding functions to build entire ui

```rust // before start, add plugin first .add_plugin(UiBuilderPlugin)

// usage fn setup(mut commands: Commands, assetserver: Res) { // ... let mut b = UiBuilder::new(&mut commands, ()); // create new node element b.node() // style modifier .withstylemodifier((StyleSize::FULL, StyleCenterChildren)) .withchildren(|b| { // create image element b.image(assetserver.load("image/file.png")); // create button element b.button() .withchildren(|b| { // create text element b.text("text content"); }); }); // ... } ```

Modify style

NOTE: duplicated call will overwrite previous state

For more StyleModifier and TextModifier , please see src/modifiers.rs

Buttons

There is a button example

Toggle Button

Click Action

Button Visual

every button has following visual states,

library provide following two ways

If you need more customize style, you can use Changed<> subscribe ButtonVisualState component changes, and work on your styles.

Data Binding

| api | description | | ---------------------------------------------------- | ------------------------------------------------------------ | | with_bind_source::<S, T>(source, handler) | when remote entity source component S change, call handler function to modify current entity component T. see example | | with_on_self_change::<S>(handler) | when current entity component S change, call handler function. see example | | with_event_bind_to_target::<E, T>(target, handler) | when event E happen, call handler function to modify entity target component T. see example | | with_on_source_change::<S>(source, handler) | when remote entity source component S change, call handler function. see example | | with_self_bind::<S, T>(handler) | when current entity component S change, call handler function to modify current entity component T. see example | | with_bind_to_target::<S, T>(target, handler) | when current entity component S change, call handler function to modify remote entity target component T. see example | | with_bind_to_multiple_targets::<S, T>(binds) | when current entity component S change, call handler function to modify remote entity target component T |

Compatible bevy version

| bevy | bevyuibuilder | | ---- | --------------- | | 0.9 | 0.1 |

Similar Projects

This library is inspired from following libraries

License

MIT OR Apache-2.0