0 purchases
tbib upgrade app
Tbib Upgrade App #
Setup #
GlobalKey<NavigatorState> _navigatorKey = GlobalKey<NavigatorState>();
TBIBCheckForUpdate.init(_navigatorKey);
copied to clipboard
how to use #
bool newUpdate= TBIBCheckForUpdate.checkForUpdate();
if(newUpdate){
return;
}
Navigator.push(context, HomeScreen());
copied to clipboard
force upgrade
bool newUpdate= TBIBCheckForUpdate.forceCheckUpdate();
if(newUpdate){
return;
}
Navigator.push(context, HomeScreen());
copied to clipboard
can add your custom upgrader
TBIBCheckForUpdate.customCheckForUpdate(Upgrader())
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.