iced_aw 0.14.0

Additional widgets for the Iced GUI library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Contains the sidebar related widget and data enums.

#[allow(clippy::module_inception)]
pub mod sidebar;
pub use sidebar::*;
pub mod column;
pub use column::*;

// Not used by `Sidebar` itself, but included for completeness.
// The horizontal version of the vertical `Column` for the `Row`.
pub mod row;
pub use row::*;