<StackLayout Orientation="Vertical" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<sync:SfListView x:Name="listView" ItemsSource="{Binding MusicInfo}">
<sync:SfListView.ItemTemplate >
<DataTemplate>
<card:SfCardView x:Name="cardView" SwipeToDismiss="False">
<Grid RowSpacing="0" ColumnSpacing="0">
<Grid.RowDefinitions>
<RowDefinition Height="*"></RowDefinition>
<RowDefinition Height ="30"></RowDefinition>
</Grid.RowDefinitions>
<Label Text="{Binding SongTitle}" Margin="5,5,0,0" ></Label>
<Label Grid.Row="1" Text="{Binding SongAuther}" FontSize="8" Margin="5,0,0,0"></Label>
</Grid>
</card:SfCardView>
</DataTemplate>
</sync:SfListView.ItemTemplate>
</sync:SfListView>
</StackLayout>
|