ux-components 0.1.3

Backend agnostic GUI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::{foundation::colorspace::Color, painting::NotchedShape};

pub struct BottomAppBarTheme {
    pub color: Color,
    pub elevation: f32,
    pub shape: NotchedShape,
}

impl Default for BottomAppBarTheme {
    fn default() -> Self {
        Self {
            color: Default::default(),
            elevation: Default::default(),
            shape: Default::default(),
        }
    }
}