Export Tooltip
in iced_glow
This commit is contained in:
parent
2f766b7341
commit
9d4996cbab
@ -20,6 +20,7 @@ pub mod rule;
|
|||||||
pub mod scrollable;
|
pub mod scrollable;
|
||||||
pub mod slider;
|
pub mod slider;
|
||||||
pub mod text_input;
|
pub mod text_input;
|
||||||
|
pub mod tooltip;
|
||||||
|
|
||||||
#[doc(no_inline)]
|
#[doc(no_inline)]
|
||||||
pub use button::Button;
|
pub use button::Button;
|
||||||
@ -43,6 +44,8 @@ pub use scrollable::Scrollable;
|
|||||||
pub use slider::Slider;
|
pub use slider::Slider;
|
||||||
#[doc(no_inline)]
|
#[doc(no_inline)]
|
||||||
pub use text_input::TextInput;
|
pub use text_input::TextInput;
|
||||||
|
#[doc(no_inline)]
|
||||||
|
pub use tooltip::Tooltip;
|
||||||
|
|
||||||
#[cfg(feature = "canvas")]
|
#[cfg(feature = "canvas")]
|
||||||
#[cfg_attr(docsrs, doc(cfg(feature = "canvas")))]
|
#[cfg_attr(docsrs, doc(cfg(feature = "canvas")))]
|
||||||
|
6
glow/src/widget/tooltip.rs
Normal file
6
glow/src/widget/tooltip.rs
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
//! 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::Position;
|
Loading…
Reference in New Issue
Block a user