Last updated:
0 purchases
picker instagram
picker_instagram #
Getting Started #
A Flutter package for picking images or the videos or both from the Gallery.
Usage
1. Add dependency #
Please check the latest version before installation. If there is any problem with the new version, please use the previous version
dependencies:
flutter:
sdk: flutter
# add picker_instagram
picker_instagram: ^{latest version}
copied to clipboard
2. Add the following imports to your Dart code #
import 'package:picker_instagram/picker_instagram.dart';
copied to clipboard
3. Usage Code #
//Use this code for the picker instagram
PickerInstagram.instagramPicker(
context,
type: PickerInsta.both,
onComplete: (value) {
// Here you can add the your logic after selecttion
},
);
copied to clipboard
To use this package, ensure you have added the required permissions to your AndroidManifest.xml and Info.plist files as shown below:
#### Android
xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yourcompany.yourpackage">
//Also add the Internet Permission
<uses-permission android:name="android.permission.INTERNET" />
// These permissions are must
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
<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_MEDIA_VISUAL_USER_SELECTED" />
<application
....
/>
</manifest>
copied to clipboard
#### IOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
...
// These permissions are must
<key>NSCameraUsageDescription</key>
<string>your usage description here</string>
<key>NSMicrophoneUsageDescription</key>
<string>your usage description here</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>We need access to your photo library to select and upload photos.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>We need access to save photos to your photo library.</string>
</dict>
</plist>
copied to clipboard
Screenshots #
Here are some screenshots of the example app demonstrating the key features of this package:
Screenshot 1 #
Screenshot 2 #
Screenshot 3 #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.