public static async Task StartupAsync()
        {
            await ThemeSelectorService.SetRequestedThemeAsync();

            await FirstRunDisplayService.ShowIfAppropriateAsync();

            await WhatsNewDisplayService.ShowIfAppropriateAsync();
        }
        private async Task StartupAsync()
        {
            await ThemeSelectorService.SetRequestedThemeAsync();

            await FirstRunDbDownloadService.InitializeAsync().ConfigureAwait(false);

            await FirstRunDisplayService.ShowIfAppropriateAsync();

            await WhatsNewDisplayService.ShowIfAppropriateAsync();
        }