bevy_feathers 0.19.0

A collection of UI widgets for building editors and utilities in Bevy
Documentation
1
2
3
4
5
6
7
8
9
10
//! Meta-module containing all feathers containers: passive widgets that hold other widgets.
mod flex_spacer;
mod group;
mod pane;
mod subpane;

pub use flex_spacer::*;
pub use group::*;
pub use pane::*;
pub use subpane::*;