FLUTTER ECOSYSTEM

Danesz/store_redirect

안드로이드 및 iOS용 플러터 플러그인으로 사용자를 구글 플레이 스토어 / 앱 스토어의 앱 페이지로 리디렉션합니다.

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.