Function freya::prelude::dioxus_elements::onglobalfilehover

source ·
pub fn onglobalfilehover<E, T>(
    _f: impl FnMut(Event<FileData>) -> E + 'static
) -> Attribute
where E: EventReturn<T>,
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:?}")
        }
    )
}