This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.

33 lines
1.3 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<ContentView
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
2019-07-05 14:17:09 -04:00
xmlns:hl="clr-namespace:Aurora.Design.Components.HorizontalList"
2019-12-22 23:58:29 -05:00
xmlns:flv="clr-namespace:DLToolkit.Forms.Controls;assembly=DLToolkit.Forms.Controls.FlowListView"
2019-07-05 14:17:09 -04:00
x:Class="Aurora.Design.Components.MemberList.MemberList">
2019-12-22 23:58:29 -05:00
<ContentView.Resources>
<StyleSheet
Source="./MemberList.css"/>
</ContentView.Resources>
<ContentView.Content>
2019-12-22 23:58:29 -05:00
<flv:FlowListView
x:Name="MembersList"
2019-12-23 12:23:51 -05:00
FlowColumnMinWidth="150"
2019-12-22 23:58:29 -05:00
RowHeight="150"
VerticalOptions="FillAndExpand"
SeparatorVisibility="None"
2019-12-23 12:23:51 -05:00
BackgroundColor="#3a3a3a"
HasUnevenRows="false">
2019-12-22 23:58:29 -05:00
<flv:FlowListView.FlowColumnTemplate>
<DataTemplate>
2019-12-23 13:29:06 -05:00
<Grid
2019-12-23 12:23:51 -05:00
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
2019-12-22 23:58:29 -05:00
<Label
2019-12-23 13:29:06 -05:00
Text="{Binding UserName}"/>
</Grid>
2019-12-22 23:58:29 -05:00
</DataTemplate>
</flv:FlowListView.FlowColumnTemplate>
</flv:FlowListView>
</ContentView.Content>
</ContentView>