simple_update_dialog 1.0.4  simple_update_dialog: ^1.0.4 copied to clipboard
simple_update_dialog: ^1.0.4 copied to clipboard
A simple package for showing a paltform-specific dialog to promote users to update the app.
simple_update_dialog #
A simple package for showing a paltform-specific dialog to promote users to update the app.
Usage #
To use this plugin, add simple_update_dialog as a dependency in your pubspec.yaml file.
Screenshots #
 
 
Example #
import 'package:flutter/material.dart';
import 'package:simple_update_dialog/simple_update_dialog.dart';
class HomePage extends StatelessWidget {
  const HomePage({super.key});
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: ElevatedButton(
          onPressed: () {
            SimpleUpdateDialog.showUpdateDialog(
              context: context,
              isForceUpdate: false,
              dialogConfig: DialogConfig(
                appStoreUrl: '',
                playStoreUrl: '',
                currentVersion: '1.0.0',
                latestAndroidVersion: '1.0.1',
                latestIOSVersion: '1.0.1',
                minAndroidAppVerAllowed: '1.0.0',
                minIOSAppVerAllowed: '1.0.0',
              ),
            );
          },
          child: const Text("Show Update Dialog"),
        ),
      ),
    );
  }
}
See the example app for better understanding.