<StackLayout>
<Grid HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<xForms:SfListView BackgroundColor="Transparent"
ItemTapped="SfListView_OnItemTapped"
ItemsSource="{Binding PublicProp}"
SelectedItem="{Binding SelectedCard}"
SelectionBackgroundColor="Transparent"
SelectionGesture="Tap"
SelectionMode="Single"/>
</Grid>
</StackLayout> |
<ScrollView>
<StackLayout>
<sync:SfListView x:Name="listView" ItemsSource="{Binding BookInfo}" HeightRequest="200" ItemSize="100"/>
</StackLayout>
</ScrollView> |
<StackLayout><ScrollView><StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand"><sync:SfListView x:Name="listView"HeightRequest="200"ItemSize="100"ItemsSource="{Binding BookInfo}"><sync:SfListView.ItemTemplate><DataTemplate><ViewCell><ViewCell.View><StackLayout Orientation="Vertical"><Label FontAttributes="Bold"Text="{Binding BookName}"TextColor="Teal"><Label.FontSize><OnPlatform x:TypeArguments="x:Double"><OnPlatform.WinPhone><OnIdiom x:TypeArguments="x:Double"Phone="21"Tablet="22" /></OnPlatform.WinPhone><OnPlatform.Android><OnIdiom x:TypeArguments="x:Double"Phone="20"Tablet="22" /></OnPlatform.Android><OnPlatform.iOS><OnIdiom x:TypeArguments="x:Double"Phone="20"Tablet="22" /></OnPlatform.iOS></OnPlatform></Label.FontSize></Label><Label Text="{Binding BookDescription}" TextColor="Teal"><Label.FontSize><OnPlatform x:TypeArguments="x:Double"><OnPlatform.WinPhone><OnIdiom x:TypeArguments="x:Double"Phone="16"Tablet="17" /></OnPlatform.WinPhone><OnPlatform.Android><OnIdiom x:TypeArguments="x:Double"Phone="14"Tablet="16" /></OnPlatform.Android><OnPlatform.iOS><OnIdiom x:TypeArguments="x:Double"Phone="14"Tablet="16" /></OnPlatform.iOS></OnPlatform></Label.FontSize></Label></StackLayout></ViewCell.View></ViewCell></DataTemplate></sync:SfListView.ItemTemplate></sync:SfListView><Button Clicked="Button_Clicked"HeightRequest="100"Text="Click to Add Item"TextColor="Blue"WidthRequest="100" /><Label FontSize="16"HeightRequest="100"Text="Get the Book Details"TextColor="Black" /><Label FontSize="16"HeightRequest="100"Text="Purchase the Books"TextColor="Black" /></StackLayout></ScrollView></StackLayout>