FLUTTER ECOSYSTEM

kfiross/flutter_instagram_image_picker

Instagram에서 이미지를 선택하기 위한 Flutter 패키지

flutter_instagram_image_picker 프로젝트 이미지
Stars
3
Forks
10
최근 푸시(UTC)
2023. 1. 4.
프로젝트 상태
활성
Kfir Matityahu GitHub avatar
GITHUB User

Kfir Matityahu ↗

언어DartHTMLSwiftKotlinObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 8 개

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

flutter_instagram_image_picker

A Flutter package for picking images from Instagram

Getting Started

This plugin displays a gallery with user's Instagram Albums and Photos, based on the access token provided. It does handle authorization and login by itself.
Then just provides access data (userId+SessionKey) to the gallery.

Usage

1.Check if user has logged in, if not prompt him to enter his login data using by navigation to the InstagramLoginPage

bool isLogged = await InstagramAuth().isLogged;
// check if user already logged in, if not log the user
if (!isLogged) {
  bool loginStatus = await InstagramAuth().signUserIn(context);

  // if user canceled the operation
  if (!loginStatus)
    return;
}

2.Check if the user logged in successfully by accessing his data.

final accessMapData = await InstagramAuth().accessData;
if(accessMapData == null){
  return null;
}

3.After we got the access data, we can navigate to InstagramImagePicker:

Navigator.push(
  context,
  MaterialPageRoute(
    builder: (context) => InstagramImagePicker(
      accessMapData,
      showLogoutButton: true,
      onDone: (photos) {
        // photos are the photos you selected in the picker
        // each one has the url
        Navigator.pop(context);
      },
      onCancel: () => Navigator.pop(context),
    ),
  ),
);
,

Screenshots

  • Login Page:

https://raw.githubusercontent.com/kfiross/flutter_instagram_image_picker/HEAD/images/login_filled.png

  • Image Picker:

https://raw.githubusercontent.com/kfiross/flutter_instagram_image_picker/HEAD/images/picker_page.png

  • Image Picker (after selection):

https://raw.githubusercontent.com/kfiross/flutter_instagram_image_picker/HEAD/images/picker_page_selected.png