mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-02 16:44:15 -05:00
13 lines
238 B
Markdown
13 lines
238 B
Markdown
|
# SpinButton
|
||
|
|
||
|
```rust demo
|
||
|
let value = RwSignal::new(0);
|
||
|
let value_f64 = RwSignal::new(0.0);
|
||
|
|
||
|
view! {
|
||
|
<Space vertical=true>
|
||
|
<SpinButton value step_page=1/>
|
||
|
<SpinButton value=value_f64 step_page=1.0/>
|
||
|
</Space>
|
||
|
}
|
||
|
```
|