blob: 867f043781ee62cb16eca88c0a98ab49f62eabab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
//! 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;
|