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