blob: b7d4f11e8dd6e001d1d70cadcacc6ea9591927d6 (
plain) (
tree)
|
|
//! 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::Tooltip<'a, Message, crate::Renderer>;
pub use iced_native::tooltip::TooltipPosition;
|