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
Containerwith the givenBackground. - bordered_
box - A bordered
Containerwith a background. - dark
- A
Containerwith a dark background and white text. - draw_
background - Draws the background of a
Containergiven itsStyleand itsbounds. - layout
- Computes the layout of a
Container. - rounded_
box - A rounded
Containerwith a background. - transparent
- A transparent
Container. - visible_
bounds - Produces a
Taskthat queries the visible screen bounds of theContainerwith the givenId.