euv-example 0.5.10

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Display variant for the `logo_button` component.
///
/// Controls the size and positioning of the logo button:
/// - `Nav`: Inline 32×32 button for the navigation sidebar.
/// - `Fab`: Fixed-position 48×48 button for the floating action button.
#[derive(Clone, Copy)]
pub(crate) enum LogoButtonVariant {
    /// Inline logo button for the navigation sidebar.
    Nav,
    /// Fixed-position floating action button.
    Fab,
}