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.
115 lines
5.1 KiB
115 lines
5.1 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"
|
|
x:Class="Stim.ProfilPage"
|
|
Title="Profil">
|
|
<ScrollView>
|
|
|
|
<Grid BackgroundColor="#495057">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="5*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="0"/>
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="2"/>
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="0" Grid.Row="1"/>
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="2" Grid.Row="1"/>
|
|
|
|
<Grid Grid.Column="1" Grid.Row="1" Margin="0,10,100,0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<VerticalStackLayout Grid.Column="0" Margin="10,0,0,0">
|
|
<Image Source="eldenring.jpg" HeightRequest="200" WidthRequest="200" Margin="0,0,10,0"/>
|
|
|
|
<Grid HeightRequest="20">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="35*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border>
|
|
<Label Text="Username"/>
|
|
</Border>
|
|
<Image Source="pen.png" Grid.Column="1" HeightRequest="64"/>
|
|
</Grid>
|
|
|
|
<Grid HeightRequest="20">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="35*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border>
|
|
<Label Text="Username"/>
|
|
</Border>
|
|
<Image Source="pen.png" Grid.Column="1" HeightRequest="64"/>
|
|
</Grid>
|
|
|
|
<Grid HeightRequest="20">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="35*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border>
|
|
<Label Text="Biographie" Padding="50"/>
|
|
</Border>
|
|
<Image Source="pen.png" Grid.Column="1" HeightRequest="64"/>
|
|
</Grid>
|
|
|
|
<Grid HeightRequest="20">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="35*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border>
|
|
<Label Text="*************"/>
|
|
</Border>
|
|
<Image Source="pen.png" Grid.Column="1" HeightRequest="64"/>
|
|
</Grid>
|
|
<Border Margin="0,10,0,0">
|
|
<Label Text="Adresse Mail"/>
|
|
</Border>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
<VerticalStackLayout Grid.Column="1" Margin="100,0,0,0">
|
|
<Label HorizontalOptions="Center" Text="Mes suivis"/>
|
|
<Border>
|
|
<VerticalStackLayout HeightRequest="100">
|
|
|
|
<Grid Margin="10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="5*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border>
|
|
<Image Source="eldenring.jpg" Grid.Column="0" HeightRequest="100"/>
|
|
</Border>
|
|
|
|
<Border Grid.Column="1">
|
|
<Label Text="Nom du Jeu"/>
|
|
</Border>
|
|
|
|
<Border Grid.Column="2">
|
|
<Label Text="X" FontSize="50"/>
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
</VerticalStackLayout>
|
|
</Border>
|
|
</VerticalStackLayout>
|
|
</Grid>
|
|
</Grid>
|
|
</ScrollView>
|
|
</ContentPage> |