I am trying to display a snackbar or a toast in a MAUI app on Windows. For that I am using the Maui Community Toolkit. Everything works fine on mobile, but on Windows nothing happens even though it is not mentioned anywhere that Windows is not supported.
See the code taken from the official sample app:
var toast = Toast.Make("This is a default Toast.");
var cts = new CancellationTokenSource(TimeSpan.FromSeconds(5));
await toast.Show(cts.Token);
Has anybody managed to use those on Windows ? Or does anybody know of another library that offers that feature ? Thanks for any help with this.