blob: 8bad18c1117646c067156c448cdb423ea451e736 (
plain) (
blame)
1
2
3
4
5
|
/// A generic widget.
///
/// This is an alias of an `iced_native` element with a default `Renderer`.
pub type Element<'a, Message> =
crate::runtime::Element<'a, Message, crate::renderer::Renderer>;
|