Function freya::prelude::dioxus_elements::onclick

source ·
pub fn onclick<E, T>(
    _f: impl FnMut(Event<MouseData>) -> E + 'static
) -> Attribute
where E: EventReturn<T>,
Expand description

The click event fires when the user clicks an element with the left button of the mouse.

Event Data: MouseData

§Example

fn app() -> Element {
    rsx!(
        rect {
            width: "100",
            height: "100",
            background: "red",
            onclick: |_| println!("Clicked!")
        }
    )
}