pub fn ontouchend<E, T>( _f: impl FnMut(Event<TouchData>) -> E + 'static, ) -> Attributewhere E: EventReturn<T>,
The touchend event fires when the user stops touching an element.
touchend
Event Data: TouchData
TouchData
fn app() -> Element { rsx!( rect { width: "100", height: "100", background: "red", ontouchend: |_| println!("Stopped touching!") } ) }