firststartDialog function

dynamic firststartDialog()

First start Dialog @param prefs: SharedPreferences @param currentVersion: String

Implementation

firststartDialog() {
  plausible.event(page: 'changelog');

  // Get root context by Key
  final context = GlobalVariable.infobox.currentContext!;
  const String title = "🎉 Welcome to WSL Manager! 🎉";
  const String body = """
Hi there! 👋

As the developer of this application, I want to express my sincere gratitude for choosing WSL Manager. 🙏 I have put in a lot of time and effort to make sure that this application is both intuitive and easy to use, while also providing a comprehensive set of features for managing your WSL environments.

Whether you're a developer, system administrator, or just someone who enjoys tinkering with Linux, I believe that WSL Manager will be a valuable addition to your toolkit. 🛠️

If you have any feedback or suggestions for improving the application, please don't hesitate to get in touch. I'm always eager to hear from users and to make WSL Manager even better. 📣

Thank you for your support, and happy WSL-ing!

Best regards,

Eric
""";
  showDialog(
    context: context,
    builder: (context) {
      return ContentDialog(
        constraints: const BoxConstraints(maxHeight: 500.0, maxWidth: 500.0),
        title: const Text(title),
        content: Markdown(
          shrinkWrap: true,
          data: body,
          onTapLink: (text, href, title) {
            if (href == null) return;
            launchUrlString(href);
          },
          extensionSet: md.ExtensionSet(
            md.ExtensionSet.gitHubFlavored.blockSyntaxes,
            [
              md.EmojiSyntax(),
              ...md.ExtensionSet.gitHubFlavored.inlineSyntaxes
            ],
          ),
        ),
        actions: [
          Row(
            mainAxisAlignment: MainAxisAlignment.spaceBetween,
            children: [
              shareUsageData(prefs),
              Button(
                  style: ButtonStyle(
                    backgroundColor: ButtonState.all(Colors.blue),
                    foregroundColor: ButtonState.all(Colors.white),
                  ),
                  onPressed: () {
                    Navigator.pop(context);
                  },
                  child: Text('ok-text'.i18n())),
            ],
          )
        ],
      );
    },
  );
}