├── .github └── workflows │ ├── dart.yml │ └── stale.yml ├── .gitignore ├── .idea ├── libraries │ ├── Dart_SDK.xml │ └── Flutter_for_Android.xml ├── modules.xml ├── runConfigurations │ └── example_lib_main_dart.xml └── workspace.xml ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── assets └── exampleupload.gif ├── example ├── .gitignore ├── .metadata ├── README.md ├── lib │ ├── big_video_upload │ │ └── big_video_upload_view.dart │ ├── issue_25 │ │ └── issue_25.dart │ ├── main.dart │ ├── multi_video_upload │ │ └── multi_video_upload.dart │ ├── photo_history │ │ └── photo_history_add_view.dart │ └── sample │ │ └── sample_page.dart ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── image_picker_web.iml ├── lib ├── image_picker_web.dart └── src │ └── models │ └── media_info.dart ├── pubspec.yaml └── test └── src └── models └── media_info_test.dart /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /.idea/libraries/Flutter_for_Android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.idea/libraries/Flutter_for_Android.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/example_lib_main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.idea/runConfigurations/example_lib_main_dart.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/exampleupload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/assets/exampleupload.gif -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/README.md -------------------------------------------------------------------------------- /example/lib/big_video_upload/big_video_upload_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/lib/big_video_upload/big_video_upload_view.dart -------------------------------------------------------------------------------- /example/lib/issue_25/issue_25.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/lib/issue_25/issue_25.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/multi_video_upload/multi_video_upload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/lib/multi_video_upload/multi_video_upload.dart -------------------------------------------------------------------------------- /example/lib/photo_history/photo_history_add_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/lib/photo_history/photo_history_add_view.dart -------------------------------------------------------------------------------- /example/lib/sample/sample_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/lib/sample/sample_page.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /image_picker_web.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/image_picker_web.iml -------------------------------------------------------------------------------- /lib/image_picker_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/lib/image_picker_web.dart -------------------------------------------------------------------------------- /lib/src/models/media_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/lib/src/models/media_info.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/src/models/media_info_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmadre/image_picker_web/HEAD/test/src/models/media_info_test.dart --------------------------------------------------------------------------------