ios_document_picker 0.3.0 copy "ios_document_picker: ^0.3.0" to clipboard
ios_document_picker: ^0.3.0 copied to clipboard

PlatformiOS

Flutter wrapper of iOS UIDocumentPickerViewController.

ios_document_picker #

pub package

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);

Options #

  • allowedUtiTypes: List of allowed UTI types.
  • multiple: Allow multiple selection.
1
likes
150
points
229
downloads

Publisher

verified publisherflutter-cavalry.com

Weekly Downloads

Flutter wrapper of iOS UIDocumentPickerViewController.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on ios_document_picker