euv-example 0.5.39

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

thread_local! {
    pub(crate) static BACK_PENDING: Cell<bool> = const { Cell::new(false) };
    pub(crate) static NAVIGATE_AFTER_BACK: Cell<Option<String>> = const { Cell::new(None) };
}