You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coud you add an option like set_overlay to AsyncFileDialog which lets you skip this rfd-card and open the os file picker directly? The easiest solution would probably be to add an eventlistener to input instead of button.set_onclick(Some(closure.as_ref().unchecked_ref())); in wasm.rs:94 and add the visibility of the body.
The text was updated successfully, but these errors were encountered:
But the APIs required to create handles to files on the user's machine (showDirectoryPicker, showOpenDirectoryPicker, showSaveFilePicker) are Chromium-only.
That being said, they are significantly simpler than the existing approach, and they do provide a much better experience, requiring no extra dialog to make them work. Maybe rfd could use those APIs if they are available, and fallback to the current implementation if not?
When using pickfile it creates html code like this:
Coud you add an option like set_overlay to AsyncFileDialog which lets you skip this rfd-card and open the os file picker directly? The easiest solution would probably be to add an eventlistener to input instead of
button.set_onclick(Some(closure.as_ref().unchecked_ref()));
in wasm.rs:94 and add the visibility of the body.The text was updated successfully, but these errors were encountered: