Function freya::prelude::onrightclick

source ·
pub fn onrightclick<__Marker>(
    _f: impl SuperInto<Callback<Event<MouseData>>, __Marker>
) -> Attribute
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!")
        }
    )
}