FLUTTER ECOSYSTEM

Frezyx/open_store

一個簡單的 Flutter 套件,用於在應用程式商店中開啟應用程式頁面

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.