Add a Popover widget, that shows a widget in an overlay (#100)

This serves a similar purpose to `GtkPopover`. It takes two widgets, one
to show normally and one to show in an overlay.

This should basically work, though more options could be added here.
This commit is contained in:
Ian Douglas Scott 2023-05-11 13:29:05 -07:00 committed by GitHub
parent 355e5a9715
commit 98ec1bbd48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 254 additions and 0 deletions

View file

@ -23,6 +23,9 @@ pub use nav_bar::nav_bar;
pub mod nav_bar_toggle;
pub use nav_bar_toggle::{nav_bar_toggle, NavBarToggle};
pub mod popover;
pub use popover::{popover, Popover};
pub mod rectangle_tracker;
pub mod search;