Function bottom_center

Source
pub fn bottom_center<'a, Message, Theme, Renderer>(
    content: impl Into<Element<'a, Message, Theme, Renderer>>,
) -> Container<'a, Message, Theme, Renderer>
where Theme: Catalog + 'a, Renderer: Renderer,
Expand description

Creates a new Container that fills all the available space and aligns its contents inside to the bottom center.

This is equivalent to:

let bottom_center = container("Bottom Center!").center_x(Fill).align_bottom(Fill);