FLUTTER ECOSYSTEM

Frezyx/open_store

스토어에서 앱 페이지를 열기 위한 간단한 플러터 패키지

open_store 프로젝트 이미지
Stars
12
Forks
5
최근 푸시(UTC)
2023. 1. 13.
프로젝트 상태
활성
Stanislav Ilin GitHub avatar
GITHUB User

Stanislav Ilin ↗

Your code's boyfriend

언어C++CMakeDartRubyHTMLCSwiftKotlinObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 3 개
  • flutter{"sdk":"flutter"}
  • url_launcher^6.1.6
  • flutter_test개발 의존성{"sdk":"flutter"}

원본 README

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

README 펼치기 / 접기

OpenStore

😎 Simple flutter package to open app page in store
😍 Without native platform code

Android

https://github.com/Frezyx/open_store/blob/main/example/repo/e_android.gif?raw=true

iOS

https://github.com/Frezyx/open_store/blob/main/example/repo/e_ios.gif?raw=true
  • How to open app page in AppStore from Flutter ?
  • How to open app page in GooglePlay from Flutter ?

Getting Started

Add dependency
dependencies:
  open_store: ^0.4.0
Add import package
import 'package:open_store/open_store.dart';
Easy to use

Add method calling when you need open app page in store

    OpenStore.instance.open(
        appStoreId: '284815942', // AppStore id of your app for iOS
        appStoreIdMacOS: '284815942', // AppStore id of your app for MacOS (appStoreId used as default)
        androidAppBundleId: 'com.google.android.googlequicksearchbox', // Android app bundle package name
        windowsProductId: '9NZTWSQNTD0S' // Microsoft store id for Widnows apps
    );

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.