Skip to content

Commit

Permalink
chore(widget): re-export missing iced widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
mmstick committed Aug 28, 2023
1 parent caf07e8 commit 2e3d9af
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions src/widget/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@

//! Cosmic-themed widget implementations.

// Re-exports from Iced
pub use iced::widget::{checkbox, Checkbox};
pub use iced::widget::{column, Column};
pub use iced::widget::{image, Image};
pub use iced::widget::{pick_list, PickList};
pub use iced::widget::{radio, Radio};
pub use iced::widget::{row, Row};
pub use iced::widget::{slider, Slider};
pub use iced::widget::{space, Space};
pub use iced::widget::{text_input, TextInput};

pub mod aspect_ratio;

mod button;
Expand Down Expand Up @@ -37,21 +48,16 @@ pub use popover::{popover, Popover};

pub mod rectangle_tracker;

mod scrollable;
pub use scrollable::*;

pub mod search;

pub mod segmented_button;
pub use segmented_button::horizontal as horizontal_segmented_button;
pub use segmented_button::vertical as vertical_segmented_button;

pub mod segmented_selection;
pub use segmented_selection::horizontal as horizontal_segmented_selection;
pub use segmented_selection::vertical as vertical_segmented_selection;

pub mod settings;

mod scrollable;
pub use scrollable::*;

pub mod spin_button;
pub use spin_button::{spin_button, SpinButton};

Expand Down

0 comments on commit 2e3d9af

Please sign in to comment.