How to hide a button, a label or a grid cell on iOS and show it on android, I have a xamarin.forms app (portable), I know that I have to use on platform but how to access th
// IOS, Android, WP SomeButton.IsVisible = Device.OnPlatform(false, true, true);
Or
if (Device.OS == TargetPlatform.Android) { SomeButton.IsVisible = true; } else ...