picker_pro_max_ultra 1.0.9 copy "picker_pro_max_ultra: ^1.0.9" to clipboard
picker_pro_max_ultra: ^1.0.9 copied to clipboard

A Flutter package that provides advanced media picking functionality with support for images, videos, and multi-selection.

πŸ“¦ picker_pro_max_ultra #

pub package

A powerful and customizable media picker for Flutter, built with performance and ease of use in mind.

Easily pick images and videos from device storage or capture new ones with camera support. Comes with advanced features like folder browsing, multi-selection, capture image from camera, and custom UI using GetX.


Android iOS Web Windows macOS Linux
Support SDK 21+ iOS 12+ ❌ ❌ ❌ ❌

✨ Features #

  • πŸ“Έ Capture image using the camera
  • πŸ–Ό Pick images & videos from the gallery
  • πŸ“‚ Folder-based media browsing
  • πŸ” Multi-selection support
  • ⚑ Fast loading with optimized performance
  • πŸ“‰ Automatic image compression
  • 🎨 Customizable UI with GetX

πŸ›  Installation #

Add this to your pubspec.yaml:

dependencies:
  picker_pro_max_ultra: ^<latest_version>

Replace <latest_version> with the latest version on pub.flutter-io.cn.


βš™οΈ Setup #

βœ… Android #

Add the following permissions to your AndroidManifest.xml (android/app/src/main/AndroidManifest.xml):

<!-- Media Access -->
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" /><uses-permission
android:name="android.permission.READ_MEDIA_VIDEO" /><uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="32" /><uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <!-- Camera Access -->
<uses-permission android:name="android.permission.CAMERA" />

🍏 iOS #

Add the following entries to your ios/Runner/Info.plist:


<key>NSPhotoLibraryUsageDescription</key><string>This app requires access to your photo library.
</string>

<key>NSCameraUsageDescription</key><string>This app requires access to the camera.</string>

<key>NSMicrophoneUsageDescription</key><string>This app requires access to the microphone.</string>

πŸ§ͺ Example Usage #


// Pick media
final List<MediaFile> files = await
MediaPicker
(
context: context,maxLimit: 5 ?? 1,mediaType: MediaType.image
).showPicker();

// Capture from camera
final MediaFile? captured = await MediaPicker(context: context
)
.
capturedFile
(
);

For a full example, check out the example folder.


πŸ“Έ Screenshots #

Screenshot 1 Screenshot 2 Screenshot 3
Screenshot 4

πŸŽ₯ Demo (Screen Recording) #

Screen Recording

https://github.com/kasimVora/picker_pro_max_ultra/blob/MAIN/screenshots/demo.gif


🧩 Contributions #

Contributions, issues, and feature requests are welcome!
Feel free to check issues page.


πŸ“„ License #

This project is licensed under the MIT License.

5
likes
0
points
485
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides advanced media picking functionality with support for images, videos, and multi-selection.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

camera, flutter, photo_manager, skeletonizer

More

Packages that depend on picker_pro_max_ultra

Packages that implement picker_pro_max_ultra