FLUTTER ECOSYSTEM

Frezyx/open_store

स्टोर में ऐप पेज खोलने के लिए सरल फ्लटर पैकेज

open_store प्रोजेक्ट कवर
Stars
12
Forks
5
अंतिम पुश (UTC)
13 जन॰ 2023
प्रोजेक्ट स्थिति
सक्रिय
Stanislav Ilin GitHub avatar
भाषाएँ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.