summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Issue1250.xaml
blob: ad06901c88a89f0639525fdf94fcea4f3efe55c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
			 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
			 xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests;assembly=Xamarin.Forms.Xaml.UnitTests"
			 x:Class="Xamarin.Forms.Xaml.UnitTests.Issue1250">
	<StackLayout x:Name="stack">
		<Label Text="{Binding Header}" />
		<local:Issue1250AspectRatioContainer AspectRatio="0.5">
			<Image Source="{Binding Image}" Aspect="Fill" />
		</local:Issue1250AspectRatioContainer>
		<Label Text="{Binding Footer}" />
	</StackLayout>
</ContentPage>