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