summaryrefslogtreecommitdiffstats
path: root/src/overlay.rs
blob: 1be0beeb944b3d2d8a922f38cb7da7c27c4cc803 (plain) (blame)
1
2
3
4
5
6
7
8
9
//! Display interactive elements on top of other widgets.
pub mod menu {
    //! Build and show dropdown menus.
    pub use iced_native::overlay::menu::{Appearance, State, StyleSheet};

    /// A widget that produces a message when clicked.
    pub type Menu<'a, Message, Renderer = crate::Renderer> =
        iced_native::overlay::Menu<'a, Message, Renderer>;
}