summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/row.rs
blob: 55960c040326bc88bb70c3db4b41113cca900c51 (plain) (blame)
1
2
3
4
5
use crate::Renderer;

/// A container that distributes its contents horizontally.
pub type Row<'a, Message, Backend> =
    iced_native::Row<'a, Message, Renderer<Backend>>;