iced/wgpu/src/widget/tooltip.rs
2021-10-31 16:14:34 +07:00

6 lines
258 B
Rust

//! Display a widget over another.
/// A widget allowing the selection of a single value from a list of options.
pub type Tooltip<'a, Message> =
iced_native::widget::Tooltip<'a, Message, crate::Renderer>;
pub use iced_native::widget::tooltip::Position;