summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz44213.xaml
blob: 0a932f3279a5d8929f6b0eed66ed6b15f195a8a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?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.Bz44213">
	<Label x:Name="label">
		<Label.Text>
			<OnPlatform x:TypeArguments="BindingBase" Android="{Binding Bar}">
				<OnPlatform.iOS>
					<Binding Path="Foo"/>
				</OnPlatform.iOS>
			</OnPlatform>
		</Label.Text>
	</Label>
</ContentPage>