FileKit
FileKit copied to clipboard
Pick and save Files, Medias and Folder for Kotlin Multiplatform / KMP and Compose Multiplatform / CMP
I have seen this library is good but one things is missing here which is run time permission for access camera and file library in kotlin multiplatform. For your information,...
Is it possible to add a feature to directly pick and store file to a specific path in the allowed Media Directories of the platform without the need of any...
Is there any plan for supporting android+ios camera? Instead of picking the video+image from gallery, directly by take a photo/video?
Hi! Thanks for the libray it's great to see more and more features coming to KMP and Compose Multiplaform! I saw that the library requests initialization on Android, and thought...
Hi there, very useful library! It would be great to be able to open the picker dialogs modally on Windows. This is important to tie the lifecycle and visibility of...
Hi, thanks for the great library. I've countered this issue on Android while allow user to delete/ overwrite a file from public external storage (music, video), it would throw SecurityException....
Here is the code piece : `val openPickerState by viewModel.openPicker.collectAsStateWithLifecycle(null)` `val filePickerLauncher = rememberFilePickerLauncher( type = FileKitType.File(), title = "Pick a file", mode = FileKitMode.Multiple() ) { files ->}` `LaunchedEffect(openPickerState)...
Thanks for the great library! It would be nice to have option for configuring front/rear camera for the cameraPicker on iOS. Would you consider to add usage of `cameraDevice` API?...
I hope Android and IOS can support persistent uri(or url) after selecting file or folder. android only need to call contentResolver.takePersistableUriPermission(uri,Intent.FLAG_GRANT_READ_ URI_PERMISSION or Intent.FLAG_GRANT_WRITE_URI_PERMISSION) after selecting file or folder, the...