Skip to content

Instantly share code, notes, and snippets.

@gurvinderbini
Last active February 26, 2017 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gurvinderbini/6c1ce872c6900c08ae29dc1719a119a6 to your computer and use it in GitHub Desktop.
Save gurvinderbini/6c1ce872c6900c08ae29dc1719a119a6 to your computer and use it in GitHub Desktop.
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BinnyXamConcepts2017.HorizontalListView.DemoPage"
xmlns:controls="clr-namespace:DLToolkit.Forms.Controls;assembly=DLToolkit.Forms.Controls.FlowListView">
<StackLayout>
<controls:FlowListView x:Name="myList"
FlowColumnCount="3"
SeparatorVisibility="None"
HasUnevenRows="false"
FlowItemTapped="FlowListView_OnFlowItemTapped"
BackgroundColor="White" >
<controls:FlowListView.FlowColumnTemplate>
<DataTemplate>
<StackLayout>
<Label HorizontalOptions="Fill"
VerticalOptions="Fill"
Text="{Binding }"/>
</StackLayout>
</DataTemplate>
</controls:FlowListView.FlowColumnTemplate>
</controls:FlowListView>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment