file_picker_pro 2.0.0 copy "file_picker_pro: ^2.0.0" to clipboard
file_picker_pro: ^2.0.0 copied to clipboard

Flutter plugin for selecting files from any devices file library, and taking a new pictures with the camera.

example/lib/main.dart

import 'dart:developer';
import 'package:file_picker_pro/file_data.dart';
import 'package:file_picker_pro/file_picker.dart';
import 'package:file_picker_pro/files.dart';
import 'package:flutter/material.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  FileData _fileData = FileData();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('file_picker_pro')),
        body: SafeArea(
          child: Column(
            children: [
              FilePicker(
                context: context,
                height: 100,
                fileData: _fileData,
                crop: true,
                maxFileSizeInMb: 10,
                allowedExtensions: const [
                  Files.txt,
                  Files.png,
                  Files.jpg,
                  Files.pdf,
                ],
                onSelected: (fileData) {
                  _fileData = fileData;
                  log(fileData.filePath);
                  setState(() {});
                },
                onCancel: (message, messageCode) {
                  log("[$messageCode] $message");
                },
              ),
            ],
          ),
        ),
      ),
    );
  }
}
copied to clipboard
20
likes
160
points
751
downloads

Publisher

verified publisherdatadirr.com

Weekly Downloads

2024.09.20 - 2025.04.04

Flutter plugin for selecting files from any devices file library, and taking a new pictures with the camera.

Homepage
Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

file_picker, flutter, flutter_web_plugins, image_cropper, image_picker, mime, open_share_plus, plugin_platform_interface, web

More

Packages that depend on file_picker_pro