I am trying to use the plugin-dialog with iOS dev. The following code opens the image chooser (the photos app) in the simulator, however, i want to have the dialog choose a file from the Files app. In this case a CSV file. Is there a special syntax needed for iOS? I looked through the plugin-dialog repo under iOS folder but my understanding of Swift code is admittedly limited.
import { open } from '@tauri-apps/plugin-dialog';
const file = await open({
multiple: false,
directory: false,
filters: [{ name: 'CSV', extensions: ['csv'] }]
});