pub fn onglobalfilehover<E, T>( _f: impl FnMut(Event<FileData>) -> E + 'static, ) -> Attributewhere E: EventReturn<T>,
The onglobalfilehover event fires when the user hovers a file over the window.
onglobalfilehover
Event Data: FileData
FileData
fn app() -> Element { rsx!( rect { width: "100%", height: "100%", background: "black", onglobalfilehover: |e| println!("File hover: {e:?}") } ) }