euv-example 0.3.2

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
1
2
3
4
5
6
7
use crate::*;

/// Global storage for the Console log signal.
///
/// Initialized via `init_console` and accessed through `get_console_signal`.
/// Uses `SignalCell` for safe single-threaded WASM contexts without raw pointers.
pub(crate) static CONSOLE_LOG_SIGNAL: SignalCell<Vec<ConsoleEntry>> = SignalCell::new();