A Flutter Plugin to Redirect Users To an App Page in Google Play Store and Apple App Store

store_redirect 

 

A Flutter plugin to redirect users to an app page in Google Play Store and Apple App Store.

The implementation is a fork of: https://github.com/Purus/launch_review


NOTE: Please feel free to send a PR to add more functionalities.

Thanks to Edouard Marquez for adding the iOS functionality.

Usage 

To use this plugin, add store_redirect as a dependency in your pubspec.yaml file.

Example 

Import the library via

import 'package:store_redirect/store_redirect.dart'; 

Then invoke the static redirect method of StoreRedirect anywhere in your Dart code. If no arguments are provided, it will consider the current package.

StoreRedirect.redirect();

To open the App Store page for any other applications, you can pass the app Id.

StoreRedirect.redirect(androidAppId: "com.iyaffle.rangoli",
                    iOSAppId: "585027354");

This plugin is inspired by the Cordova plugin cordova-launch-review created by dpa99c.

License 

The MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Use this package as a library

Depend on it

Run this command:

With Flutter:

 $ flutter pub add store_redirect

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dependencies:
  store_redirect: ^2.0.1

Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:store_redirect/store_redirect.dart';

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:store_redirect/store_redirect.dart';

void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(title: new Text('Launch App Redirect')),
        body: new Center(
          child: new ElevatedButton(
            child: new Text("Redirect App"),
            onPressed: () {
              StoreRedirect.redirect(
                androidAppId: "com.iyaffle.rangoli",
                iOSAppId: "585027354",
              );
            },
          ),
        ),
      ),
    );
  }
}

Download details:

Author: Danesz

Source: https://github.com/Danesz/store_redirect

#android  #flutter 

A Flutter Plugin to Redirect Users To an App Page in Google Play Store and Apple App Store
3.35 GEEK