pub fn onglobalfilehover<__Marker>(
    _f: impl SuperInto<Callback<Event<FileData>>, __Marker>,
) -> Attribute
Expand description
The onglobalfilehover event fires when the user hovers a file over the window.
Event Data: FileData
ยงExample
fn app() -> Element {
    rsx!(
        rect {
            width: "100%",
            height: "100%",
            background: "black",
            onglobalfilehover: |e| println!("File hover: {e:?}")
        }
    )
}