iced-yoda/graphics/src/widget/container.rs
2021-10-31 16:14:34 +07:00

11 lines
354 B
Rust

//! Decorate content and apply alignment.
use crate::Renderer;
pub use iced_style::container::{Style, StyleSheet};
/// An element decorating some content.
///
/// This is an alias of an `iced_native` container with a default
/// `Renderer`.
pub type Container<'a, Message, Backend> =
iced_native::widget::Container<'a, Message, Renderer<Backend>>;