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
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum RustLogoStyle {
    // Show only Flutter's logo, not the "Flutter" label.
    // This is the default behavior for FlutterLogoDecoration objects.
    MarkOnly = 0,
    // Show Flutter's logo on the left, and the "Flutter" label to its right.
    Horizontal = 1,
    // Show Flutter's logo above the "Flutter" label.
    Stacked = 2,
}

impl Default for RustLogoStyle {
    fn default() -> Self {
        Self::MarkOnly
    }
}