pub fn bottom_right<'a, Message, Theme, Renderer>(
content: impl Into<Element<'a, Message, Theme, Renderer>>,
) -> Container<'a, Message, Theme, Renderer>
Expand description
Creates a new Container
that fills all the available space
and aligns its contents inside to the bottom right corner.
This is equivalent to:
let bottom_right = container("Bottom!").align_right(Fill).align_bottom(Fill);