2020-07-28 18:07:46 +03:00
|
|
|
//! Display a widget over another.
|
|
|
|
|
/// A widget allowing the selection of a single value from a list of options.
|
|
|
|
|
pub type Tooltip<'a, Message> =
|
2021-10-31 15:35:12 +07:00
|
|
|
iced_native::widget::Tooltip<'a, Message, crate::Renderer>;
|
2020-07-28 18:07:46 +03:00
|
|
|
|
2021-10-31 15:35:12 +07:00
|
|
|
pub use iced_native::widget::tooltip::Position;
|