Expose overlay::Element

This commit is contained in:
Héctor Ramón Jiménez 2022-09-21 13:03:41 +02:00
parent 183b925c95
commit 7a35d1cec0
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -1,4 +1,11 @@
//! Display interactive elements on top of other widgets.
/// A generic [`Overlay`].
///
/// This is an alias of an `iced_native` element with a default `Renderer`.
pub type Element<'a, Message, Renderer = crate::Renderer> =
iced_native::overlay::Element<'a, Message, Renderer>;
pub mod menu {
//! Build and show dropdown menus.
pub use iced_native::overlay::menu::{Appearance, State, StyleSheet};