maui-linux/Xamarin.Forms.Xaml.UnitTests/OnPlatform.xaml

27 строки
886 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Xamarin.Forms.Xaml.UnitTests.OnPlatform">
<StackLayout>
<Label x:Name="label0">
<Label.IsVisible>
<OnPlatform x:TypeArguments="x:Boolean">
<OnPlatform.iOS>true</OnPlatform.iOS>
<OnPlatform.Android>false</OnPlatform.Android>
</OnPlatform>
</Label.IsVisible>
<Label.WidthRequest>
<OnPlatform x:TypeArguments="x:Double">
<OnPlatform.iOS>20</OnPlatform.iOS>
<OnPlatform.Android>30</OnPlatform.Android>
</OnPlatform>
</Label.WidthRequest>
<Label.Text>
<OnPlatform x:TypeArguments="x:String">
<OnPlatform.iOS>Foo</OnPlatform.iOS>
<OnPlatform.Android>Bar</OnPlatform.Android>
</OnPlatform>
</Label.Text>
</Label>
</StackLayout>
</ContentPage>