Function freya_elements::elements::onglobalclick
source · pub fn onglobalclick<'a>(
_cx: &'a ScopeState,
_f: impl FnMut(Event<MouseData>) + 'a
) -> Attribute<'a>
Expand description
The globalclick
event will fire when the user clicks anywhere with the left-click.
Event Data: MouseData
Example:
fn app(cx: Scope) -> Element {
render!(
rect {
onglobalclick: |_| println!("Clicked somewhere else!")
}
rect {
width: "100",
height: "100",
background: "red",
onclick: |_| println!("Clicked!")
}
)
}