|
|
|
@ -13,6 +13,10 @@
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<Image Source="{Binding CoverImage}"
|
|
|
|
@ -64,13 +68,15 @@
|
|
|
|
|
Margin="8"
|
|
|
|
|
Grid.Row="3" />
|
|
|
|
|
|
|
|
|
|
<CollectionView ItemsSource="{Binding Songs}" Grid.Row="4">
|
|
|
|
|
<CollectionView ItemsSource="{Binding Songs}"
|
|
|
|
|
Margin="0,0,0,16"
|
|
|
|
|
Grid.Row="4">
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
<DataTemplate x:DataType="local:SongViewModel">
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Grid Margin="0,8,0,0">
|
|
|
|
|
<Grid Margin="0,8,0,8">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
<ColumnDefinition Width="36"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
@ -79,6 +85,8 @@
|
|
|
|
|
FontSize="16"
|
|
|
|
|
TextColor="{StaticResource Gray}"
|
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
|
HorizontalTextAlignment="Center"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Grid.Column="0"/>
|
|
|
|
|
|
|
|
|
|
<Label Text="{Binding Title}"
|
|
|
|
@ -99,11 +107,23 @@
|
|
|
|
|
<BoxView HeightRequest="1"
|
|
|
|
|
Color="{StaticResource Gray300}"
|
|
|
|
|
HorizontalOptions="FillAndExpand"
|
|
|
|
|
Margin="16,0,8,0"/>
|
|
|
|
|
Margin="36,0,8,0"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
|
</CollectionView>
|
|
|
|
|
|
|
|
|
|
<Label Text="{Binding ReleaseDate}"
|
|
|
|
|
Style="{StaticResource FooterLabel}"
|
|
|
|
|
Grid.Row="5" />
|
|
|
|
|
|
|
|
|
|
<Label Text="{Binding SongsInfo}"
|
|
|
|
|
Style="{StaticResource FooterLabel}"
|
|
|
|
|
Grid.Row="6" />
|
|
|
|
|
|
|
|
|
|
<Label Text="{Binding CopyrightInfo}"
|
|
|
|
|
Style="{StaticResource FooterLabel}"
|
|
|
|
|
Grid.Row="7" />
|
|
|
|
|
</Grid>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</ContentPage>
|
|
|
|
|