pub trait UIExt {
    // Required methods
    fn with_clickarea(self) -> ClickArea;
    fn with_background(self, color: Vec4) -> Self;
    fn with_padding_even(self, padding: f32) -> Self;
    fn with_margin_even(self, margin: f32) -> Self;
}
Expand description

A trait that provides helper methods for UI elements.

Required Methods§

source

fn with_clickarea(self) -> ClickArea

Wraps this element in a ClickArea element.

source

fn with_background(self, color: Vec4) -> Self

Adds a background color to this element.

source

fn with_padding_even(self, padding: f32) -> Self

Adds padding to all sides of this element.

source

fn with_margin_even(self, margin: f32) -> Self

Adds margin to all sides of this element.

Implementors§