feat: color picker

This commit is contained in:
Ashley Wulber 2023-09-29 16:14:03 -04:00 committed by Ashley Wulber
parent 449771bb22
commit 70077ca985
9 changed files with 980 additions and 62 deletions

View file

@ -28,6 +28,9 @@ pub use button::{button, Button, IconButton, LinkButton, TextButton};
pub mod card;
pub use card::*;
pub mod color_picker;
pub use color_picker::*;
pub use column::{column, Column};
pub mod column {
pub type Column<'a, Message> = iced::widget::Column<'a, Message, crate::Renderer>;