FLUTTER ECOSYSTEM

Danesz/store_redirect

一个用于 Android 和 iOS 的 Flutter 插件,可将用户重定向到 Google Play 商店 / App Store 中的应用页面。

store_redirect 项目封面
Stars
32
Forks
45
最近推送(UTC)
2025年2月13日
项目状态
未归档
Daniel Dallos GitHub avatar
GITHUB User

Daniel Dallos ↗

Budapest
语言Objective-CJavaDartRuby

此仓库发布的插件

使用的依赖

依赖清单 1 项
  • flutter{"sdk":"flutter"}

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

store_redirect

pub package

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.