summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/LegacyRepro/Page1.xaml
blob: 52990d9a0dbd909d4af7d52c52efbc47f7d47f18 (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:CustomViewCell="clr-namespace:App2;assembly=Xamarin.Forms.Controls"
             x:Class="App2.Page1">
  <ListView x:Name="itemListView" RowHeight="75" HeightRequest="700" SeparatorColor="#061018" BackgroundColor="Blue" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
    <ListView.ItemTemplate>
      <DataTemplate>
        <CustomViewCell:SampleViewCell />
      </DataTemplate>
    </ListView.ItemTemplate>
  </ListView>
</ContentPage>