Hi Spencer,
Thank you for using syncfusion products.
#Regarding Disable scrollbar
We have checked the reported query from our end. we would like to inform you that you can achieve your requirement by setting the IsScrollBarVisible property has false in SfListview. Please refer to the following code snippet for your reference.
Code snippet:
|
<syncfusion:AccordionItem.Content>
<sfListView:SfListView x:Name="listView" IsScrollBarVisible="False" HeightRequest="{Binding Varieties, Converter={StaticResource HeightConverter}, ConverterParameter={x:Reference listView}}" ItemSize="50" ItemsSource="{Binding Varieties}" ItemSpacing="1">
<sfListView:SfListView.ItemTemplate>
<DataTemplate>
<Grid RowSpacing="0">
<Label Text="{Binding Name}" VerticalOptions="Center" HorizontalOptions="Start" Padding="2"/>
<Label Grid.Column="1" Text="{Binding Price}" VerticalOptions="Center" HorizontalOptions="Start" Padding="2"/>
</Grid>
</DataTemplate>
</sfListView:SfListView.ItemTemplate>
</sfListView:SfListView>
</syncfusion:AccordionItem.Content> |
Please refer to the tested sample in the following link for your reference.
Output
Please let us know if you have any concern.
Regards,
SaiGanesh Sakthivel