iced_aw/widget/
sidebar.rs

1//! Contains the sidebar related widget and data enums.
2
3#[allow(clippy::module_inception)]
4pub mod sidebar;
5pub use sidebar::*;
6pub mod column;
7pub use column::*;
8
9// Not used by `Sidebar` itself, but included for completeness.
10// The horizontal version of the vertical `Column` for the `Row`.
11pub mod row;
12pub use row::*;