Function freya_testing::elements::ontouchcancel
pub fn ontouchcancel<E, T>(
_f: impl FnMut(Event<TouchData>) -> E + 'static
) -> Attributewhere
E: EventReturn<T>,
Expand description
The touchcancel
event fires when the user cancels the touching, this is usually caused by the hardware or the OS.
Also see ontouchend
.
Event Data: TouchData
Example
fn app() -> Element {
rsx!(
rect {
width: "100",
height: "100",
background: "red",
ontouchcancel: |_| println!("Touching canceled!")
}
)
}