summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/container.rs
blob: c4c4e5ba4007b21b0605f8c10eee6ce61621ce18 (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::Container<'a, Message, Renderer<Backend>>;