iced_aw 0.14.1

Additional widgets for the Iced GUI library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A [`TabBarPosition`] for defining the position of a [`TabBar`](crate::widget::tab_bar::TabBar).
//!
//! *This API requires the following crate features to be activated: tabs*

/// A [`TabBarPosition`] for defining the position of a [`TabBar`](crate::widget::tab_bar::TabBar).
#[derive(Clone, Hash)]
#[allow(missing_debug_implementations)]
pub enum TabBarPosition {
    /// A [`TabBarPosition`] for placing the [`TabBar`](crate::widget::tab_bar::TabBar)
    ///  on top of its content.
    Top,

    /// A [`TabBarPosition`] for placing the [`TabBar`](crate::widget::tab_bar::TabBar)
    ///  on bottom of its content.
    Bottom,
}