<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:sync="clr-namespace:Syncfusion.ListView.XForms;assembly=Syncfusion.SfListView.XForms"
xmlns:local="clr-namespace:Habitatsoft.UI.ViewModels;assembly=Habitatsoft.UI"
x:Class="Habitatsoft.UI.Pages.ContactsSyncfusionPage">
<ContentPage.BindingContext>
<local:ContactsSyncfusion />
ContentPage.BindingContext>
<AbsoluteLayout VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<sync:SfListView x:Name="listView"
ItemsSource="{Binding BookInfo}"
ItemSize="100">
<sync:SfListView.ItemTemplate>
<DataTemplate>
<Grid Padding="10">
<Grid.RowDefinitions>
<RowDefinition Height="0.4*" />
<RowDefinition Height="0.6*" />
Grid.RowDefinitions>
<Label Text="{Binding BookName}" FontAttributes="Bold" FontSize="21" />
<Label Grid.Row="1" Text="{Binding BookDescription}" FontSize="15"/>
Grid>
DataTemplate>
sync:SfListView.ItemTemplate>
sync:SfListView>
AbsoluteLayout>