https://github.com/easazade/cafebazaar
flutter plugin for cafebazaar android market (only works on android obviously)
https://github.com/easazade/cafebazaar
Last synced: about 1 year ago
JSON representation
flutter plugin for cafebazaar android market (only works on android obviously)
- Host: GitHub
- URL: https://github.com/easazade/cafebazaar
- Owner: easazade
- License: apache-2.0
- Created: 2020-01-14T06:35:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-12T08:39:03.000Z (almost 6 years ago)
- Last Synced: 2025-04-22T12:52:46.394Z (over 1 year ago)
- Language: Dart
- Size: 71.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# cafebazaar
flutter plugin for cafebazaar android market (only works on android obviously)
## Getting Started
### Checking for update (if newer version is available)
```dart
bool isUpdateAvailable = await Cafebazaar.isUpdateAvailable();
if(isUpdateAvailable) {
Cafebazaar.goToAppPageOnBazaar();
//or just show a dialog ask if user wants to update then call Cafebazaar.goToAppPageOnBazaar();
}
```
### Comment
```dart
//launches comment bazaar dialog
Cafebazaar.commentOnBazaar();
```
### Go to Application page on Bazaar
```dart
//launches application page on bazaar app if bazaar is installed
Cafebazaar.goToAppPageOnBazaar();
```