基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

174 lines
6.3 KiB

  1. import 'dart:convert';
  2. import 'dart:async';
  3. import 'dart:io';
  4. import 'dart:typed_data';
  5. import 'package:flutter/cupertino.dart';
  6. import 'package:flutter/foundation.dart';
  7. import 'package:flutter/material.dart';
  8. import 'package:mobpush_plugin/mobpush_custom_message.dart';
  9. import 'package:mobpush_plugin/mobpush_notify_message.dart';
  10. import 'package:mobpush_plugin/mobpush_plugin.dart';
  11. import 'package:flutter/services.dart';
  12. import 'package:zhiying_base_widget/dialog/global_dialog/policy_dialog/policy_dialog.dart';
  13. import 'package:zhiying_base_widget/dialog/tip_dialog/tip_dialog.dart';
  14. import 'package:mobpush_plugin/mobpush_custom_message.dart';
  15. import 'package:mobpush_plugin/mobpush_notify_message.dart';
  16. import 'package:mobpush_plugin/mobpush_plugin.dart';
  17. import 'package:zhiying_base_widget/models/app_config_model.dart';
  18. import 'package:zhiying_base_widget/pages/guide_page/guide_page.dart';
  19. import 'package:zhiying_base_widget/pages/home_page/home_page.dart';
  20. import 'package:zhiying_comm/util/application.dart';
  21. import 'package:zhiying_comm/zhiying_comm.dart';
  22. import 'package:dio/dio.dart';
  23. import 'package:zhiying_base_widget/utils/contants.dart';
  24. import 'package:zhiying_comm/util/shared_prefe_util.dart';
  25. import 'package:package_info/package_info.dart';
  26. import 'package:fluttertoast/fluttertoast.dart';
  27. import 'package:zhiying_comm/util/update/app_update_util.dart';
  28. // 启动页,页面初始化等操作~跟原生启动页保持一致,防止白屏问题
  29. class LaunchPage extends StatefulWidget {
  30. final WidgetBuilder builder;
  31. const LaunchPage({Key key, this.builder}) : super(key: key);
  32. @override
  33. _LaunchPageState createState() => _LaunchPageState();
  34. }
  35. class _LaunchPageState extends State<LaunchPage> with TickerProviderStateMixin {
  36. final GlobalKey navigatorKey = new GlobalKey();
  37. int showTime = 0;
  38. @override
  39. void initState() {
  40. validateInit();
  41. super.initState();
  42. }
  43. validateInit() async {
  44. // Connectivity().checkConnectivity().then((connectivityResult) async {
  45. // if (connectivityResult == ConnectivityResult.mobile || connectivityResult == ConnectivityResult.wifi) {
  46. // I am connected to a wifi network.
  47. Logger.debug('ConnectivityResult.wifi');
  48. print('ConnectivityResult.wifi');
  49. ///检查是否覆盖安装
  50. //取masterId
  51. String lasterMasterId = await SharedPreferencesUtil.getStringValue(Constants.masterId, defaultVal: "1");
  52. Map setting = await NativeUtil.getSetting();
  53. String masterId = setting['master_id'];
  54. if (lasterMasterId != "1") {
  55. if (masterId != lasterMasterId) {
  56. await SharedPreferencesUtil.clean();
  57. }
  58. }
  59. SharedPreferencesUtil.setStringValue(Constants.masterId, masterId);
  60. Application.init().then((_) async {
  61. ///引导页
  62. PackageInfo packageInfo = await PackageInfo.fromPlatform();
  63. String versionNumber = await SharedPreferencesUtil.getStringValue(Constants.versionNumber);
  64. String currentVersionCode = packageInfo.buildNumber?.toString() ?? '';
  65. if (versionNumber == null || versionNumber == '' || versionNumber != currentVersionCode) {
  66. await _showGuideImage();
  67. SharedPreferencesUtil.setStringValue(Constants.versionNumber, currentVersionCode);
  68. }
  69. if (widget.builder != null) {
  70. Navigator.of(context).pushReplacement(CupertinoPageRoute(builder: widget.builder));
  71. } else {
  72. // Navigator.of(context).pushReplacement(
  73. // CupertinoPageRoute(builder: (context) => HomePage()));
  74. print("打开首页");
  75. Navigator.of(context).pushReplacementNamed('/homePage');
  76. }
  77. }).catchError((err, s) async {
  78. print(s);
  79. // if (err.toString().contains("BaseSettingModel")) {
  80. // await showDialog(
  81. // context: context,
  82. // child: TipDialog(
  83. // content: "基本配置加载失败!请检查网络是否可用后再启动应用!",
  84. // ));
  85. // SystemNavigator.pop();
  86. // }
  87. if (showTime < 3) {
  88. showTime++;
  89. Fluttertoast.showToast(msg: "配置基础数据失败!请检查网络是否可用");
  90. }
  91. Timer(Duration(seconds: 5), () async {
  92. await SharedPreferencesUtil.setStringValue(GlobalConfig.GUIDE, "1");
  93. await SharedPreferencesUtil.setStringValue(GlobalConfig.MAIN_CONFIG, "1");
  94. validateInit();
  95. });
  96. Logger.error(err);
  97. });
  98. // } else {
  99. // ///在无网络情况下提示用户打开网络
  100. // if(showTime<3){
  101. // showTime++;
  102. // Fluttertoast.showToast(msg: "无法连接网络!请打开移动网络/连接WIFI后再尝试");
  103. // }
  104. //
  105. // Timer(Duration(seconds: 5), () {
  106. // validateInit();
  107. // });
  108. // Logger.error('未知网络,APP初始化失败');
  109. // print('unknow');
  110. // }
  111. // });
  112. }
  113. Future _showGuideImage() async {
  114. try {
  115. // 引导页
  116. AppConfigModel guide = AppConfigModel.getConfig();
  117. if (guide != null && guide.guideData.guideCss.length > 0) {
  118. Dio dio = Dio();
  119. print("加载图片");
  120. List<Uint8List> guideImages = List();
  121. List<Uint8List> bgImages = List();
  122. for (int i = 0; i < guide.guideData.guideCss.length; i++) {
  123. try {
  124. Response response = await dio.get(guide.guideData.guideCss[i].contentImage, options: Options(responseType: ResponseType.bytes));
  125. if (response.statusCode == 200) {
  126. Uint8List data = Uint8List.fromList(response.data);
  127. guideImages.add(data);
  128. }
  129. } catch (e, s) {
  130. guideImages.add(null);
  131. }
  132. try {
  133. Response response = await dio.get(guide.guideData.guideCss[i].bgImage, options: Options(responseType: ResponseType.bytes));
  134. if (response.statusCode == 200) {
  135. Uint8List data = Uint8List.fromList(response.data);
  136. bgImages.add(data);
  137. }
  138. } catch (e, s) {
  139. bgImages.add(null);
  140. }
  141. }
  142. NativeUtil.notifyInitSuccess();
  143. await Navigator.of(context).push(CupertinoPageRoute(builder: (context) => GuidePage(guide.guideData, guideImages, bgImages)));
  144. }
  145. } catch (e) {
  146. throw "引导图加载失败";
  147. }
  148. }
  149. @override
  150. Widget build(BuildContext context) {
  151. return Container(
  152. color: Colors.white,
  153. );
  154. }
  155. }