summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27318.xaml
blob: ae1e9ba7c4d10ae8404df23b17c2187015767b2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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.Controls.Bugzilla27318">
	<StackLayout>
		<ListView x:Name="listView" BackgroundColor="Red">
			<ListView.ItemTemplate>
				<DataTemplate>
					<ViewCell>
						<StackLayout Spacing="0">
						<Label Text="Fontsize 30 text"
							   BackgroundColor="Green"
							   FontSize="30" />
						<Label Text="Small text overwritten"
							   BackgroundColor="Yellow"
							   HorizontalOptions="End" />
						</StackLayout>
					</ViewCell>
				</DataTemplate>
			</ListView.ItemTemplate>
		</ListView>
	</StackLayout>
</ContentPage>