euv-example 0.3.3

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
/// A handle to a browser interval timer created by `use_interval`.
///
/// Stores the numeric interval ID returned by `window.setInterval` so the
/// timer can be cancelled later via `clear_interval`.
///
/// # Fields
///
/// - `i32`: The interval ID assigned by the browser.
pub struct IntervalHandle {
    pub(crate) interval_id: i32,
}