Expand description
Containers let you align a widget inside their boundaries.
§Example
use iced::widget::container;
enum Message {
// ...
}
fn view(state: &State) -> Element<'_, Message> {
container("This text is centered inside a rounded box!")
.padding(10)
.center(800)
.style(container::rounded_box)
.into()
}
Structs§
- Container
- A widget that aligns its contents inside of its boundaries.
- Style
- The appearance of a container.
Traits§
Functions§
- background
- A
Container
with the givenBackground
. - bordered_
box - A bordered
Container
with a background. - dark
- A
Container
with a dark background and white text. - draw_
background - Draws the background of a
Container
given itsStyle
and itsbounds
. - layout
- Computes the layout of a
Container
. - rounded_
box - A rounded
Container
with a background. - transparent
- A transparent
Container
. - visible_
bounds - Produces a
Task
that queries the visible screen bounds of theContainer
with the givenId
.