iced/src/element.rs
2022-05-14 01:56:32 +02:00

5 lines
228 B
Rust

/// A generic widget.
///
/// This is an alias of an `iced_native` element with a default `Renderer`.
pub type Element<'a, Message, Theme = iced_native::Theme> =
crate::runtime::Element<'a, Message, crate::Renderer<Theme>>;