summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla38416.xaml
blob: 4815563ad592ca820c51906b9d3d350a3855b396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8" ?>
<local:TestContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:Xamarin.Forms.Controls"
             x:Class="Xamarin.Forms.Controls.Bugzilla38416">
  <local:TestContentPage.Content>
    <StackLayout>
      <Button Text="Swap Visibility" Clicked="SwapVisibilityClicked" HorizontalOptions="FillAndExpand" />
      <BoxView x:Name="Box" BackgroundColor="Red" WidthRequest="50" HorizontalOptions="Center" />

      <StackLayout x:Name="FirstLayout" VerticalOptions="FillAndExpand">
        <ListView x:Name="FirstListView"
                  HasUnevenRows="True"
                  VerticalOptions="FillAndExpand">
          <ListView.ItemTemplate>
            <DataTemplate>
              <!--<ViewCell>
                  <Label Text="{Binding Name}" FontSize="19"/>
              </ViewCell>-->
            <TextCell Text="{Binding Name}"/>
            </DataTemplate>
          </ListView.ItemTemplate>
        </ListView>
      </StackLayout>
    </StackLayout>
	</local:TestContentPage.Content>
</local:TestContentPage>