Add messages about war in Ukraine

This commit is contained in:
Oleksii Holub
2022-03-06 19:24:22 +02:00
parent 08d9af534b
commit b996215e36
6 changed files with 35 additions and 1 deletions

View File

@@ -118,6 +118,19 @@ public class RootViewModel : Screen
App.SetLightTheme();
}
// War in Ukraine message
Notifications.Enqueue(
"⚠ UKRAINE IS AT WAR!",
"LEARN MORE & HELP", _ =>
{
ProcessEx.StartShellExecute("https://tyrrrz.me");
},
null,
true,
true,
TimeSpan.FromMinutes(1)
);
await CheckForUpdatesAsync();
}