file_picker_writable icon indicating copy to clipboard operation
file_picker_writable copied to clipboard

Flutter plugin to choose files which can be read, referenced and written back at a later time.

Results 19 file_picker_writable issues
Sort by recently updated
recently updated
newest added

It'd be great to be able to use this for persistently picking files on macOS as well.

~Note: This PR includes the changes in #19, so you might want to review that one first.~ This PR addresses #16 by adding the following functions: - `FilePickerWritable.openDirectory` - `FilePickerWritable.getDirectory`...

I have the following diffs on a fork: ```diff modified android/src/main/kotlin/codeux/design/filepicker/file_picker_writable/FilePickerWritableImpl.kt @@ -53,6 +53,8 @@ class FilePickerWritableImpl( val intent = Intent(Intent.ACTION_OPEN_DOCUMENT).apply { addCategory(Intent.CATEGORY_OPENABLE) type = "*/*" + val mimetypes =...

` Warning: startAccessingSecurityScopedResource is false for file:///private/var/mobile/Containers/Shared/AppGroup/A33CEDC8-AC01-4799-B622-684C1CB35B11/File%20Provider%20Storage/data.xlsx (destination); skipDestinationStartAccess=true` Why am I getting the warning? And why are you abbreviating this filename? Can you remove the abbreviation in this filename...

When trying to upgrade my project to Android Gradle Plugin 8.0 I get the following error: ``` FAILURE: Build failed with an exception. * What went wrong: A problem occurred...

On iOS, this plugin "eats" all links that are shared to my app. I am using Share Handler plugin to deal with url shares from the browser (https://pub.dev/packages/share_handler) but your...

My app need to create a file with a longer name than 30, and it is stripped out and has no file extension.

Hey @hpoul, I needed to create file names with length longer than 30. Hence made this change and raised this PR. Also a solution to https://github.com/hpoul/file_picker_writable/issues/34.