update_checker 0.0.1 copy "update_checker: ^0.0.1" to clipboard
update_checker: ^0.0.1 copied to clipboard

Flutter plugin to check updates for android and ios, just pass the app store and play store URL's

update_checker #

Flutter plugin to check updates for android and ios

Getting Started #

Add this to pubspec.yaml

dependencies:
  update_checker: ^0.0.1

Usage #

 void initState() {
    super.initState();
    var checker = UpdateChecker(); // create an object from UpdateChecker

    //check your OS if android pass the play store URL and so do iOS
    if (Platform.isIOS) {
      checker.checkForUpdates("YOUR_APP_STORE_URL").then((value) => {
            // if value is true you can show a dialog to redirect user to app store to perform update
          });
    } else if (Platform.isAndroid) {
      checker
          .checkForUpdates(
            "YOUR_PLAY_STORE_URL",
          )
          .then((value) => {
                // if value is true you can show a dialog to redirect user to play store to perform update
              });
    }
  }

Contributing #

We Accept the following contributions

  • Reporting issues
  • bug fixing

Maintainers #

developer.ahmedhamdy@gmail.com

6
likes
100
pub points
50%
popularity

Publisher

unverified uploader

Flutter plugin to check updates for android and ios, just pass the app store and play store URL's

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, html, http

More

Packages that depend on update_checker