euv-example 0.3.0

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
13
/// Log level for console entries, mirroring the web console API.
///
/// Each variant corresponds to a standard browser console method
/// and is rendered with a distinct color in the vConsole panel.
#[derive(Clone, Debug, PartialEq)]
pub enum LogLevel {
    /// Informational message (console.log), rendered in white/green.
    Log,
    /// Warning message (console.warn), rendered in yellow/amber.
    Warn,
    /// Error message (console.error), rendered in red.
    Error,
}