blob: 99996f3b12c91de80199da9ab7d142a75cd2ee4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
//! 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>>;
|