Welcome to the Xamarin.Forms feedback portal. We’re happy you’re here! If you have feedback on how to improve the Xamarin.Forms, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
<controlsext:XyListView x:Name="lv_list" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" SelectionMode="None"
ItemSize="30" Padding="0,0,0,30">
<controlsext:XyListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Margin="8,8,0,0">
<buttons:SfChipGroup
ItemsSource="{Binding Employees}"
BackgroundColor="{Binding Background}"
ChipClicked="ChipGroup_ChipClicked"
ChipPadding="8,8,0,0"
DisplayMemberPath="Name">
<buttons:SfChipGroup.ChipLayout>
<FlexLayout
HorizontalOptions="Start"
VerticalOptions="Center"
Direction="Row"
Wrap="Wrap"
JustifyContent="Start"
AlignContent="Start"
AlignItems="Start"/>
</buttons:SfChipGroup.ChipLayout>
</buttons:SfChipGroup>
</StackLayout>
</ViewCell>
</DataTemplate>
</controlsext:XyListView.ItemTemplate>
</controlsext:XyListView>