Last updated:
0 purchases
new app version alert
TODO: check your app new version
Features #
TODO: esy to check new app version and beautifully alert dialog .
Getting started #
TODO: To use this package, add new_app_version_alert as a dependency in your pubspec.yaml file.
Usage #
TODO: NewVersionCheck.newVersionCheck(context, "androidPackageName", "iosPackageName");
// Example Code
class AppNewVersion extends StatefulWidget {
const AppNewVersion({Key? key}) : super(key: key);
@override
State<AppNewVersion> createState() => _AppNewVersionState();
}
class _AppNewVersionState extends State<AppNewVersion> {
@override
void initState() {
// TODO: implement initState
super.initState();
NewVersionCheck.newVersionCheck(context, "androidPackageName", "iosPackageName");
}
@override
Widget build(BuildContext context) {
return Container();
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.