7.在首页调用”版本更新”的类
class IndexPage extends StatefulWidget { @override IndexPageState createState() => IndexPageState(); } class IndexPageState extends State<IndexPage>{ @override Widget build(BuildContext context) { return UpdaterPage(Scaffold( //调用UpdaterPage appBar: _buildAppBar(), body: getScreen() )); } }8.总结
当有新版本需要升级时,客户端会"版本更新"弹出对话框,Android用户跳转到 Google Play 官网去下载APK,而iOS用户跳转到 App Store 官网下载。APP版本更新的功能已经实现,欢迎大家围观。源码地址: https://github.com/wupeilinloveu/flutter_get_new_version