new_app_version_alert 0.0.4
new_app_version_alert: ^0.0.4 copied to clipboard
check your app new version
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();
}
}
