Xamarin.Forms
Comportamiento específico de la plataforma
Buscar..
Observaciones
Plataformas de destino
if(Device.OS == TargetPlatform.Android)
{
}
else if (Device.OS == TargetPlatform.iOS)
{
}
else if (Device.OS == TargetPlatform.WinPhone)
{
}
else if (Device.OS == TargetPlatform.Windows)
{
}
else if (Device.OS == TargetPlatform.Other)
{
}
Eliminando el icono en el encabezado de navegación en Anroid
Usando una pequeña imagen transparente llamada empty.png
public class MyPage : ContentPage
{
public Page()
{
if (Device.OS == TargetPlatform.Android)
NavigationPage.SetTitleIcon(this, "empty.png");
}
}
Aumentar el tamaño de letra de la etiqueta en iOS
Label label = new Label
{
Text = "text"
};
if(Device.OS == TargetPlatform.iOS)
{
label.FontSize = label.FontSize - 2;
}
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow