playstore_update

A Flutter package that helps you show a popup to your users whenever you publish a new update on Google Play Store.

Example

Description

In this package you can show a popup to users whenever you publish a new update on Google Play Store. You can customize the popup according to your needs and this packages is still in development. This package is really very easy to use and beginner friendly. More feautures will be coming soon and it will make the package better and more customizable!

Sample

Showing Popup in the init state

@override
  void initState() {
    // TODO: implement initState
    PlaystoreUpdate(
            context: context,
            // Allow users to dismiss the popup and allow them to use the app.
            allowDismissal: true,
            // Enter your application's package name. Example:- com.malay.youtuber.wallpaper.
            packageName: 'com.malay.youtuber.wallpaper',
            // Do you want to show the app description(What's new).
            showDescription: true,
            // Do you want users to see from from which version are they upgrading to which one/
            showVersions: true,
            // Primary color of the popup.
            primaryColor: Colors.blue)
        .checkForUpdate();
  }

Author

Follow @Malay1121

<<<<<<< HEAD LinkedIn: @Malay Patel

LinkedIn: @Malay Patel

74ded8716361c03dc68bc48d6561f8091f9355fa

Libraries

playstore_update