feat(native): Add MouseListener widget

This commit is contained in:
Michael Aaron Murphy 2022-12-12 01:53:45 +01:00 committed by Héctor Ramón Jiménez
parent cf35c85f8c
commit dfc1868179
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
4 changed files with 424 additions and 0 deletions

View file

@ -47,6 +47,14 @@ pub mod container {
iced_native::widget::Container<'a, Message, Renderer>;
}
pub mod mouse_listener {
//! Intercept mouse events on a widget.
/// A container intercepting mouse events.
pub type MouseListener<'a, Message, Renderer = crate::Renderer> =
iced_native::widget::MouseListener<'a, Message, Renderer>;
}
pub mod pane_grid {
//! Let your users split regions of your application and organize layout dynamically.
//!