pub fn onpointerup<'a>(
    _cx: &'a ScopeState,
    _f: impl FnMut(Event<PointerData>) + 'a
) -> Attribute<'a>
Expand description

The pointerup event fires when the user releases their mouse button or stops touching the element.

Event Data: PointerData

Example

fn app(cx: Scope) -> Element {
    render!(
        rect {
            width: "100",
            height: "100",
            background: "red",
            onpointerup: |_| println!("Released mouse button, or no longer touching!")
        }
    )
}