euv-ui 0.10.0

Reusable UI component library for the euv framework, providing buttons, cards, modals, inputs, and more.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Represents the facing direction of the camera device.
///
/// Used to switch between the front (user-facing) and rear
/// (environment-facing) cameras.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum EuvCameraFacing {
    /// The user-facing (front) camera.
    User,
    /// The environment-facing (rear) camera.
    #[default]
    Environment,
}