2019-05-27 16:23:14 +00:00
|
|
|
<?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-12-23 04:58:29 +00:00
|
|
|
xmlns:flv="clr-namespace:DLToolkit.Forms.Controls;assembly=DLToolkit.Forms.Controls.FlowListView"
|
2019-07-05 18:17:09 +00:00
|
|
|
x:Class="Aurora.Design.Components.MemberList.MemberList">
|
2019-12-23 04:58:29 +00:00
|
|
|
<ContentView.Resources>
|
|
|
|
<StyleSheet
|
|
|
|
Source="./MemberList.css"/>
|
|
|
|
</ContentView.Resources>
|
2019-05-27 16:23:14 +00:00
|
|
|
<ContentView.Content>
|
2019-12-23 04:58:29 +00:00
|
|
|
<flv:FlowListView
|
|
|
|
x:Name="MembersList"
|
2019-12-23 17:23:51 +00:00
|
|
|
FlowColumnMinWidth="150"
|
2019-12-23 04:58:29 +00:00
|
|
|
RowHeight="150"
|
|
|
|
SeparatorVisibility="None"
|
2019-12-24 01:07:07 +00:00
|
|
|
BackgroundColor="#181818"
|
2019-12-23 17:23:51 +00:00
|
|
|
HasUnevenRows="false">
|
2019-12-23 04:58:29 +00:00
|
|
|
<flv:FlowListView.FlowColumnTemplate>
|
|
|
|
<DataTemplate>
|
2019-12-23 18:29:06 +00:00
|
|
|
<Grid
|
2019-12-23 17:23:51 +00:00
|
|
|
HorizontalOptions="FillAndExpand"
|
|
|
|
VerticalOptions="FillAndExpand">
|
2019-12-23 04:58:29 +00:00
|
|
|
<Label
|
2019-12-23 18:29:06 +00:00
|
|
|
Text="{Binding UserName}"/>
|
|
|
|
</Grid>
|
2019-12-23 04:58:29 +00:00
|
|
|
</DataTemplate>
|
|
|
|
</flv:FlowListView.FlowColumnTemplate>
|
|
|
|
</flv:FlowListView>
|
2019-05-27 16:23:14 +00:00
|
|
|
</ContentView.Content>
|
|
|
|
</ContentView>
|