summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43450.xaml
blob: cc2348795f5c88f1b0dbf2c7c9fa8c4ca3eac93b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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.Bz43450">
	<Grid>
		<Grid.RowDefinition>
			<RowDefinition Height="20"/>
			<RowDefinition Height="*"/>
			<RowDefinition Height="20"/>
		</Grid.RowDefinition>
		<BoxView BackgroundColor="Red"/>
		<BoxView Grid.Row="1" BackgroundColor="Yellow"/>
		<BoxView Grid.Row="2" BackgroundColor="Green"/>
	</Grid>
</ContentPage>