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
use crate::*;

/// Global static pointer to the Console log signal.
///
/// Initialized lazily via `init_console` and never freed.
/// Safe in single-threaded WASM contexts.
pub(crate) static mut CONSOLE_LOG_SIGNAL: *mut SignalInner<Vec<ConsoleEntry>> =
    std::ptr::null_mut();