summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz51567.xaml
blob: 844d2d8c05cab339061b0225bbed9c49eb07d822 (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" x:Class="Xamarin.Forms.Xaml.UnitTests.Bz51567">
	<ContentPage.Resources>
		<ResourceDictionary>
			<Style x:Key="ListText" TargetType="Label">
				<Setter Property="TextColor" Value="Black" />
				<Setter Property="FontSize">
					<OnPlatform x:TypeArguments="x:Double" iOS="17" Android="17" WinPhone="20" />
				</Setter>
			</Style>
		</ResourceDictionary>
	</ContentPage.Resources>
</ContentPage>