基础组件库
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

171 rinda
6.2 KiB

  1. import 'dart:convert';
  2. import 'dart:async';
  3. import 'dart:io';
  4. import 'dart:typed_data';
  5. import 'package:connectivity/connectivity.dart';
  6. import 'package:flutter/cupertino.dart';
  7. import 'package:flutter/foundation.dart';
  8. import 'package:flutter/material.dart';
  9. import 'package:mobpush_plugin/mobpush_custom_message.dart';
  10. import 'package:mobpush_plugin/mobpush_notify_message.dart';
  11. import 'package:mobpush_plugin/mobpush_plugin.dart';
  12. import 'package:flutter/services.dart';
  13. import 'package:zhiying_base_widget/dialog/global_dialog/policy_dialog/policy_dialog.dart';
  14. import 'package:zhiying_base_widget/dialog/tip_dialog/tip_dialog.dart';
  15. import 'package:mobpush_plugin/mobpush_custom_message.dart';
  16. import 'package:mobpush_plugin/mobpush_notify_message.dart';
  17. import 'package:mobpush_plugin/mobpush_plugin.dart';
  18. import 'package:zhiying_base_widget/models/app_config_model.dart';
  19. import 'package:zhiying_base_widget/pages/guide_page/guide_page.dart';
  20. import 'package:zhiying_base_widget/pages/home_page/home_page.dart';
  21. import 'package:zhiying_comm/util/application.dart';
  22. import 'package:zhiying_comm/zhiying_comm.dart';
  23. import 'package:dio/dio.dart';
  24. import 'package:zhiying_base_widget/utils/contants.dart';
  25. import 'package:zhiying_comm/util/shared_prefe_util.dart';
  26. import 'package:package_info/package_info.dart';
  27. import 'package:fluttertoast/fluttertoast.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. Navigator.of(context).pushReplacementNamed('/homePage');
  75. }
  76. }).catchError((err, s) async {
  77. print(s);
  78. // if (err.toString().contains("BaseSettingModel")) {
  79. // await showDialog(
  80. // context: context,
  81. // child: TipDialog(
  82. // content: "基本配置加载失败!请检查网络是否可用后再启动应用!",
  83. // ));
  84. // SystemNavigator.pop();
  85. // }
  86. if (showTime < 3) {
  87. showTime++;
  88. Fluttertoast.showToast(msg: "配置基础数据失败!请检查网络是否可用");
  89. }
  90. Timer(Duration(seconds: 5), () async {
  91. await SharedPreferencesUtil.setStringValue(GlobalConfig.GUIDE, "1");
  92. await SharedPreferencesUtil.setStringValue(GlobalConfig.MAIN_CONFIG, "1");
  93. validateInit();
  94. });
  95. Logger.error(err);
  96. });
  97. // } else {
  98. // ///在无网络情况下提示用户打开网络
  99. // if(showTime<3){
  100. // showTime++;
  101. // Fluttertoast.showToast(msg: "无法连接网络!请打开移动网络/连接WIFI后再尝试");
  102. // }
  103. //
  104. // Timer(Duration(seconds: 5), () {
  105. // validateInit();
  106. // });
  107. // Logger.error('未知网络,APP初始化失败');
  108. // print('unknow');
  109. // }
  110. // });
  111. }
  112. Future _showGuideImage() async {
  113. try {
  114. // 引导页
  115. AppConfigModel guide = AppConfigModel.getConfig();
  116. if (guide != null && guide.guideData.guideCss.length > 0) {
  117. Dio dio = Dio();
  118. print("加载图片");
  119. List<Uint8List> guideImages = List();
  120. List<Uint8List> bgImages = List();
  121. for (int i = 0; i < guide.guideData.guideCss.length; i++) {
  122. try {
  123. Response response = await dio.get(guide.guideData.guideCss[i].contentImage, options: Options(responseType: ResponseType.bytes));
  124. if (response.statusCode == 200) {
  125. Uint8List data = Uint8List.fromList(response.data);
  126. guideImages.add(data);
  127. }
  128. } catch (e, s) {
  129. guideImages.add(null);
  130. }
  131. try {
  132. Response response = await dio.get(guide.guideData.guideCss[i].bgImage, options: Options(responseType: ResponseType.bytes));
  133. if (response.statusCode == 200) {
  134. Uint8List data = Uint8List.fromList(response.data);
  135. bgImages.add(data);
  136. }
  137. } catch (e, s) {
  138. bgImages.add(null);
  139. }
  140. }
  141. NativeUtil.notifyInitSuccess();
  142. await Navigator.of(context).push(CupertinoPageRoute(builder: (context) => GuidePage(guide.guideData, guideImages, bgImages)));
  143. }
  144. } catch (e) {
  145. throw "引导图加载失败";
  146. }
  147. }
  148. @override
  149. Widget build(BuildContext context) {
  150. return Container(
  151. color: Colors.white,
  152. );
  153. }
  154. }