parent
d308df7c59
commit
55670c6ead
@ -0,0 +1,114 @@
|
||||
<?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"
|
||||
x:Class="Linaris.AlbumPage"
|
||||
xmlns:avatarview="clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core"
|
||||
Title="Album">
|
||||
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="6*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<VerticalStackLayout BackgroundColor="black" Spacing="20" Padding="0,20,0,0">
|
||||
<Label Text="Home"
|
||||
FontSize="30"
|
||||
TextColor="White"
|
||||
HorizontalOptions="Center"
|
||||
VerticalOptions="Start">
|
||||
</Label>
|
||||
<Label Text="Playlist"
|
||||
FontSize="30"
|
||||
TextColor="White"
|
||||
HorizontalOptions="Center"
|
||||
VerticalOptions="Start">
|
||||
</Label>
|
||||
<Label Text="Search"
|
||||
FontSize="30"
|
||||
TextColor="White"
|
||||
HorizontalOptions="Center"
|
||||
VerticalOptions="Start">
|
||||
</Label>
|
||||
<Label Text="Favorites"
|
||||
FontSize="30"
|
||||
TextColor="White"
|
||||
HorizontalOptions="Center"
|
||||
VerticalOptions="Start">
|
||||
</Label>
|
||||
<Label Text="Log out"
|
||||
FontSize="30"
|
||||
TextColor="White"
|
||||
HorizontalOptions="Center"
|
||||
VerticalOptions="End">
|
||||
</Label>
|
||||
</VerticalStackLayout>
|
||||
|
||||
<ScrollView Grid.Column="1"
|
||||
BackgroundColor="#404040">
|
||||
<VerticalStackLayout>
|
||||
|
||||
<SearchBar Placeholder="Rechercher"
|
||||
BackgroundColor="White"
|
||||
HorizontalOptions="Fill"
|
||||
Margin="10"/>
|
||||
|
||||
<Grid VerticalOptions="Fill">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="6*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<FlexLayout Direction="Row"
|
||||
VerticalOptions="Fill"
|
||||
AlignItems="Start"
|
||||
JustifyContent="SpaceAround"
|
||||
Wrap="Wrap"
|
||||
Grid.Column="0">
|
||||
<VerticalStackLayout HorizontalOptions="Fill">
|
||||
<avatarview:SfAvatarView
|
||||
ContentType="Custom"
|
||||
ImageSource="album9.jpg"
|
||||
VerticalOptions="Start"
|
||||
HorizontalOptions="Center"
|
||||
HeightRequest="150"
|
||||
WidthRequest="150"
|
||||
CornerRadius="75"
|
||||
BackgroundColor="Transparent"
|
||||
Stroke="Transparent"/>
|
||||
</VerticalStackLayout>
|
||||
</FlexLayout>
|
||||
<ScrollView Grid.Column="1"
|
||||
VerticalOptions="Fill">
|
||||
<FlexLayout Direction="Row"
|
||||
AlignItems="Start"
|
||||
JustifyContent="SpaceAround"
|
||||
Wrap="Wrap"
|
||||
VerticalOptions="Fill">
|
||||
<VerticalStackLayout HorizontalOptions="Fill">
|
||||
<Label Text="Informations complémentaires"
|
||||
TextColor="White"
|
||||
HorizontalOptions="Center">
|
||||
</Label>
|
||||
|
||||
<Label
|
||||
TextColor="White"
|
||||
HorizontalOptions="Center"
|
||||
VerticalOptions="End">
|
||||
<Label.Text>
|
||||
Plein d'informations sur ce bel album, plein de chiffres etc...
|
||||
</Label.Text>
|
||||
</Label>
|
||||
</VerticalStackLayout>
|
||||
</FlexLayout>
|
||||
</ScrollView>
|
||||
</Grid>
|
||||
|
||||
</VerticalStackLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
||||
</Grid>
|
||||
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace Linaris;
|
||||
|
||||
public partial class AlbumPage : ContentPage
|
||||
{
|
||||
public AlbumPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue