euv-example 0.5.10

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

/// Reactive state for a progress bar feature.
#[derive(Clone, Copy, Data, New)]
pub(crate) struct UseProgress {
    /// Whether the progress bar animation is currently running.
    #[get(type(copy))]
    pub(crate) running: Signal<bool>,
}