Function bottom

Source
pub fn bottom<'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 vertically and bottom-aligns its contents inside.

This is equivalent to:

let bottom = container("Bottom!").align_bottom(Fill);