Implemented Tooltip as Pure

This commit is contained in:
Casper Rogild Storm 2022-04-22 13:35:53 +02:00
parent a33e320521
commit 5d67f9988c
No known key found for this signature in database
GPG key ID: 8F52569F9DDB2ECC
8 changed files with 438 additions and 2 deletions

View file

@ -12,6 +12,7 @@ pub mod slider;
pub mod svg;
pub mod text_input;
pub mod toggler;
pub mod tooltip;
pub mod tree;
mod column;
@ -37,6 +38,7 @@ pub use svg::Svg;
pub use text::Text;
pub use text_input::TextInput;
pub use toggler::Toggler;
pub use tooltip::{Position, Tooltip};
pub use tree::Tree;
use iced_native::event::{self, Event};