Recently I updated to the latest version of .net MAUI and I was a bit surprised to see that the MAUI Device class has now been marked as Obsolete
I have multiple use cases where I am using the device class for something or the other.
For instance now the mainthread method is obsolete:
Device.BeginInvokeOnMainThread(() =>{});
Is there a new helper class that is going to be performing these activities now or am I missing something?
