Skip to content

marc2332/dioxus-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dioxus-utils

These are just experiments for myself, I will move these to https://github.com/DioxusLabs/dioxus-std eventually

  • use_channel
fn app(cx: Scope) -> Element {
    let channel = use_channel::<String>(cx, 5);

    use_listen_channel(cx, &channel, move |msg| async move {
        println!("Listener: {msg}");
    });

    let onclick = move |_: MouseEvent| {
        channel.send("Hello").ok();
    };

    render!(
        label {
            onclick: onclick,
            "Send hello"
        }
    )
}
  • use_interval
fn app(cx: Scope) -> Element {
    let interval = use_interval(
        cx,
        Duration::from_millis(100),
        move |_interval| async move {
            println!("tick! tick!!");
        },
    );

    let onclick = move |_: MouseEvent| {
        interval.clear();
    };

    render!(
        label {
            onclick: onclick,
            "Clear"
        }
    )
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages