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>, }