initRoot function

dynamic initRoot(
  1. dynamic statusMsg
)

Implementation

initRoot(statusMsg) async {
  // Call constructor to initialize
  Notify();
  Notify.message = statusMsg;

  // First start with this version
  String? version = prefs.getString('version');

  if (version == null) {
    // First start
    prefs.setString('version', currentVersion);
    while (GlobalVariable.infobox.currentContext == null) {
      await Future.delayed(const Duration(milliseconds: 100));
    }
    firststartDialog();
  } else if (version != currentVersion) {
    // First start with this version
    prefs.setString('version', currentVersion);

    // Get changelog
    var response = await Dio().get(updateUrl);
    if (response.data.length > 0) {
      var latest = response.data[0];
      String tagName = latest['tag_name'];
      String body = latest['body'];

      changelogDialog(prefs, tagName, body);
    }
  }
  // if (kDebugMode) {
  //   prefs.remove('version');
  // }
  // if (kDebugMode) {
  //   prefs.setString('version', '1.8.0');
  // }

  // Check updates
  App app = App();
  app.checkUpdate(currentVersion).then((updateUrl) {
    if (updateUrl != '') {
      statusMsg('',
          useWidget: true,
          widget: RichText(
              textAlign: TextAlign.center,
              maxLines: 2,
              overflow: TextOverflow.clip,
              text: TextSpan(children: [
                TextSpan(
                    text: '${'newversion-text'.i18n()} ',
                    style:
                        TextStyle(fontSize: 14.0, color: AppTheme().textColor)),
                TextSpan(
                    text: '${'downloadnow-text'.i18n()} ',
                    style: TextStyle(
                        color: Colors.purple,
                        fontSize: 14.0,
                        fontWeight: FontWeight.bold),
                    recognizer: TapGestureRecognizer()
                      ..onTap = () => launchUrl(Uri.parse(updateUrl))),
                TextSpan(
                    text: '${'orcheck-text'.i18n()} ',
                    style:
                        TextStyle(fontSize: 14.0, color: AppTheme().textColor)),
                TextSpan(
                    text: '${'windowsstore-text'.i18n()} ',
                    style: TextStyle(
                        color: Colors.purple,
                        fontSize: 14.0,
                        fontWeight: FontWeight.bold),
                    recognizer: TapGestureRecognizer()
                      ..onTap = () => launchUrl(Uri.parse(windowsStoreUrl))),
              ])));
    }
  });

  // Check motd Show once a day
  if (prefs.getString('LastMotd') !=
      DateTime.now().toString().substring(0, 10)) {
    prefs.setString('LastMotd', DateTime.now().toString().substring(0, 10));
    app.checkMotd().then((String motd) {
      if (motd != '') {
        Notify.message(motd, duration: const Duration(seconds: 60));
      }
    });
  }

  // if (kDebugMode) {
  //   prefs.remove('LastMotd');
  // }

  // Get system dark mode
  if (ThemeMode.system == ThemeMode.dark) {
    AppTheme().mode = ThemeMode.dark;
  } else if (ThemeMode.system == ThemeMode.light) {
    AppTheme().mode = ThemeMode.light;
  }
}