chore(widget): re-export missing iced widgets
This commit is contained in:
parent
caf07e8288
commit
2e3d9af720
1 changed files with 14 additions and 8 deletions
|
|
@ -3,6 +3,17 @@
|
||||||
|
|
||||||
//! Cosmic-themed widget implementations.
|
//! 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;
|
pub mod aspect_ratio;
|
||||||
|
|
||||||
mod button;
|
mod button;
|
||||||
|
|
@ -37,21 +48,16 @@ pub use popover::{popover, Popover};
|
||||||
|
|
||||||
pub mod rectangle_tracker;
|
pub mod rectangle_tracker;
|
||||||
|
|
||||||
|
mod scrollable;
|
||||||
|
pub use scrollable::*;
|
||||||
|
|
||||||
pub mod search;
|
pub mod search;
|
||||||
|
|
||||||
pub mod segmented_button;
|
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 mod segmented_selection;
|
||||||
pub use segmented_selection::horizontal as horizontal_segmented_selection;
|
|
||||||
pub use segmented_selection::vertical as vertical_segmented_selection;
|
|
||||||
|
|
||||||
pub mod settings;
|
pub mod settings;
|
||||||
|
|
||||||
mod scrollable;
|
|
||||||
pub use scrollable::*;
|
|
||||||
|
|
||||||
pub mod spin_button;
|
pub mod spin_button;
|
||||||
pub use spin_button::{spin_button, SpinButton};
|
pub use spin_button::{spin_button, SpinButton};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue