24 строки
725 B
XML
24 строки
725 B
XML
<?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.Issues.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>
|