Last updated:
0 purchases
ios document picker
ios_document_picker #
Flutter wrapper of iOS UIDocumentPickerViewController.
Usage #
import 'package:ios_document_picker/ios_document_picker.dart';
final _iosDocumentPickerPlugin = IosDocumentPicker();
var result = await _iosDocumentPickerPlugin.pick(/* DocumentPickerType.file or directory */);
if (result == null) {
// Cancelled.
return;
}
print(result.url);
print(result.path);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.