update workflow
This commit is contained in:
parent
408f351332
commit
6ee866a30e
3 changed files with 26 additions and 25 deletions
|
@ -4,4 +4,4 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
floem = "0.2.0"
|
||||
|
||||
|
|
|
@ -1,18 +1,3 @@
|
|||
use floem::{prelude::*, style::Style};
|
||||
|
||||
fn main() {
|
||||
floem::launch(counter_view);
|
||||
}
|
||||
|
||||
fn counter_view() -> impl IntoView {
|
||||
let mut counter = RwSignal::new(20);
|
||||
v_stack({
|
||||
label("test")
|
||||
}).style(Style::d);
|
||||
h_stack((
|
||||
button("Increment").action(move || counter += 1),
|
||||
label(move || format!("Value: {counter}")),
|
||||
button("Decrement").action(move || counter -= 1),
|
||||
))
|
||||
.style(|s| s.size_full().items_center().justify_center().gap(10))
|
||||
println!("editor")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue