I have a Xamarin.Forms Shared project (not PCL) application and want to migrate to .NetStandard project. I checked in online, but not get any reference. I welcomes your hints
Thanks,
I have a Xamarin.Forms Shared project (not PCL) application and want to migrate to .NetStandard project. I checked in online, but not get any reference. I welcomes your hints
Thanks,
Like
#if __MOBILE__
// Xamarin iOS or Android-specific code
#endif
//OR
#if __IOS__
// iOS-specific code
#endif
With
if(Device.Idiom == TargetIdiom.Phone)//TargetIdiom.Tablet OR what ever you want
{
-----
}
if(Device.RuntimePlatform == Device.iOS)//OR Device.Android
{
-----
}