iced-yoda/graphics/src/widget/tooltip.rs
2021-10-28 20:30:25 +07:00

11 lines
328 B
Rust

//! Decorate content and apply alignment.
use crate::Renderer;
/// An element decorating some content.
///
/// This is an alias of an `iced_native` tooltip with a default
/// `Renderer`.
pub type Tooltip<'a, Message, Backend> =
iced_native::Tooltip<'a, Message, Renderer<Backend>>;
pub use iced_native::tooltip::Position;