file_picker_cross 1.2.1 copy "file_picker_cross: ^1.2.1" to clipboard
file_picker_cross: ^1.2.1 copied to clipboard

outdated

Select documents, images videos or other files on Android, iOS, the desktop and the web.

file_picker_cross #

Select files on Android, iOS, the desktop and the web.

Getting Started #

file_picker_cross allows you to select files from your device and is compatible with Android, iOS, Desktops (using go-flutter) and the web.

This package was realized using file_picker. We only added compatibility to the web.

FilePickerCross FilePickerCross(
    type: FileTypeCross.any,                        // Available: `any`, `audio`, `image`, `video`, `custom`
    fileExtension: ''                               // Only if FileTypeCross.custom . May be any file extension like `.dot`, `.ppt,.pptx,.odp`
    );

Future<bool> pick()

String toString()

Uint8List toUint8List()

String toBase64()

MultipartFile toMultipartFile({String filename})

int get length

Example:

    FilePickerCross filePicker = FilePickerCross();
    filePicker.pick().then((value) => setState(() {
          _fileLength = filePicker.toUint8List().lengthInBytes;
          try {
            // Only works for text files.
            _fileString = filePicker.toString();
          } catch (e) {
            _fileString =
                'Not a text file. Showing base64.\n\n' + filePicker.toBase64();
          }
        }));
  }
155
likes
15
points
353
downloads

Publisher

verified publishertestapp.schule

Weekly Downloads

Select documents, images videos or other files on Android, iOS, the desktop and the web.

License

unknown (license)

Dependencies

file_picker, flutter, http, http_parser

More

Packages that depend on file_picker_cross