app_version_update 0.1.0 copy "app_version_update: ^0.1.0" to clipboard
app_version_update: ^0.1.0 copied to clipboard

outdated

An easy and quick way to check if the local app is updated with the same version in their respective stores (Play Store / Apple Store ).

Retrieve version and url for local app update against store app Android and iOS

Features #

Using as reference packages like in_app_update , version_check.

Compares local version with the respective store version for the purpose of detecting user-side version updates.

Getting started #

$ flutter pub add app_version_update

or add in your dependencies

dependencies:
  app_version_update: <latest>

Usage #

final appleId = '1234567890'; // If this value is null, its packagename will be considered
final playStoreId = 'com.example.app'; // If this value is null, its packagename will be considered
final country = 'br' // If this value is null 'us' will be the default value
await AppVersionUpdate.checkForUpdates(
            appleId: appleId, playStoreId: playStoreId, country: country)
        .then((data) async {
            print(data.storeUrl);
            print(data.storeVersion);
            //showDialog(... your custom widgets view) 
            //or use our widgets
            AppVersionUpdate.showAlertUpdate(
            appVersionResult: data, context: context);
         });
// you also have some options to customize our Alert Dialog 
// ShowModalType.alert_dialog
showAlertUpdate({
    @required AppVersionResult? appVersionResult,
    @required BuildContext? context,
    String? title = 'New version available',
    String? content = 'Would you like to update your application?',
    String? cancelButtonText = 'Update later',
    String? updateButtonText = 'Update',
    modalType = ShowModalType.alert_dialog,
    Color? backgroundColor = Colors.white,
    TextStyle? textStyleCancelButton = const TextStyle(color: Colors.red),
    TextStyle? textStyleUpdateButtonconst =
        const TextStyle(color: Colors.green),
    TextStyle? titleTextStyle,
    TextStyle? contentTextStyle,
    ButtonStyle? cancelButtonStyle,
    ButtonStyle? updateButtonStyle,
  })
  // ShowModalType.bottom_sheet (available soon )
  // ShowModalType.page (available soon )

Additional information #

This project is at an initial level, more functions will be included as

Automatic country detection, taking into account the phone's language

Responsibility to create and open Bottom Sheets and/or Alert Dialogs to display the result

Better error handling, for now you can check if any value is null.

So any suggestion and contribution is welcome.

113
likes
0
pub points
97%
popularity

Publisher

verified publisherdeebx.tech

An easy and quick way to check if the local app is updated with the same version in their respective stores (Play Store / Apple Store ).

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, http, package_info_plus, url_launcher

More

Packages that depend on app_version_update