We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5046359 commit 307e509Copy full SHA for 307e509
Retronado/Sample/ViewModels/RetroGamesViewModel.cs
@@ -41,6 +41,14 @@ public override void OnNavigated(object parameter)
41
Loader.Load(InitializeAsync);
42
}
43
44
+ private async Task ChainTasks()
45
+ {
46
+ await Task.Delay(1000);
47
+ // The TaskCompleted property will never raise an exception
48
+ await Loader.CurrentLoadingTask.TaskCompleted;
49
50
+ }
51
+
52
private async Task<List<Game>> InitializeAsync()
53
{
54
var result = _platform == GamePlatform.Computer
0 commit comments