ori::prelude

Function background

Source
pub fn background<V>(background: impl Into<Color>, view: V) -> Container<V>
Expand description

Create a new Container with background.

ยงExamples

pub fn ui<T>(_data: T) -> impl View<T> {
    background(Color::RED, text("Hello, World!"))
}