picker_instagram 0.0.7 copy "picker_instagram: ^0.0.7" to clipboard
picker_instagram: ^0.0.7 copied to clipboard

A Flutter package for picking images or the videos or both from the Gallery.

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}

2. Add the following imports to your Dart code #


import 'package:picker_instagram/picker_instagram.dart';

3. Usage Code #

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:picker_instagram/picker_instagram.dart';
import 'preview_picked_assets_screen.dart';

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

  @override
  State<ExampleScreen> createState() => _ExampleScreenState();
}

class _ExampleScreenState extends State<ExampleScreen> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: ElevatedButton(
          onPressed: () {

        //User code for the picker instagram

        PickerInstagram.instagramPicker(
              context,
              type: PickerInsta.both,
              onComplete: (value) {
                //  Here you can add the your logic after selecttion
              },
            );
          },
          child: const Text('pick images'),
        ),
      ),
    );
  }
}

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 permissiona  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>

#### 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 permissiona  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>


Screenshots #

Here are some screenshots of the example app demonstrating the key features of this package:

Screenshot 1 #

[Home Screen]

Screenshot 2 #

[Home Screen]

Screenshot 3 #

[Home Screen]