pub fn onrightclick<E, T>(
_f: impl FnMut(Event<MouseData>) -> E + 'static,
) -> Attributewhere
E: EventReturn<T>,
Expand description
The click
event fires when the user clicks an element with the right button of the mouse.
Event Data: MouseData
ยงExample
fn app() -> Element {
rsx!(
rect {
width: "100",
height: "100",
background: "red",
onrightclick: |_| println!("Clicked!")
}
)
}