feat(widget): add ContextDrawer widget

This commit is contained in:
Michael Aaron Murphy 2023-10-12 13:23:21 +02:00 committed by Michael Murphy
parent 8c86dae449
commit 3127de3296
4 changed files with 383 additions and 0 deletions

View file

@ -31,6 +31,9 @@ pub use card::*;
pub mod color_picker;
pub use color_picker::{ColorPicker, ColorPickerModel};
pub mod context_drawer;
pub use context_drawer::{context_drawer, ContextDrawer};
pub use column::{column, Column};
pub mod column {
pub type Column<'a, Message> = iced::widget::Column<'a, Message, crate::Renderer>;