You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.7 KiB

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:views="clr-namespace:AppleMusicApp.Views"
x:Class="AppleMusicApp.Pages.AlbumPage"
Title="AlbumPage">
<ScrollView>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<FlexLayout Direction="Column"
AlignItems="Center">
<Border Padding="16,8" WidthRequest="150" HeightRequest="150">
<Border.StrokeShape>
<RoundRectangle CornerRadius="40"/>
</Border.StrokeShape>
<Image WidthRequest="150" HeightRequest="150" Source="alive_2007_daft_punk.png"/>
</Border>
<Label Text="Alive - 2007 (Live) [Deluxe Edition] " FontAttributes="Bold"/>
<Label Text="Daft Punk"/>
<Label Text="Dance - 2007"/>
<StackLayout Orientation="Horizontal" Spacing="50">
<Button Text="Lecture" />
<Button Text="Aléatoire"/>
</StackLayout>
</FlexLayout>
<StackLayout Orientation="Vertical" Grid.Row="1">
<views:AlbumTrack/>
<views:AlbumTrack/>
<views:AlbumTrack/>
<views:AlbumTrack/>
<views:AlbumTrack/>
<views:AlbumTrack/>
</StackLayout>
</Grid>
</ScrollView>
</ContentPage>