parent
020dab1fef
commit
66bb6d1a50
@ -0,0 +1,107 @@
|
|||||||
|
<?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:local="clr-namespace:Views"
|
||||||
|
x:Class="Views.MyProfil"
|
||||||
|
Title="MyProfil">
|
||||||
|
|
||||||
|
<local:ContainerBase
|
||||||
|
IsNotConnected="False"
|
||||||
|
NeedReturn="True">
|
||||||
|
|
||||||
|
<local:ContainerBase.MyFlyoutContent>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="250, *, *" VerticalOptions="Fill">
|
||||||
|
<VerticalStackLayout Grid.Row="1">
|
||||||
|
<Button Text="Mes informations" ImageSource="person_default.png" Style="{StaticResource button1}" Grid.Row="1"/>
|
||||||
|
<Button Text="Modifier" ImageSource="settings_icon.png" Style="{StaticResource button1}" Grid.Row="2"/>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
</local:ContainerBase.MyFlyoutContent>
|
||||||
|
|
||||||
|
<local:ContainerBase.MyContent>
|
||||||
|
|
||||||
|
<ScrollView>
|
||||||
|
<StackLayout>
|
||||||
|
<Label Text="Mon profil" TextColor="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource Gray100}}"
|
||||||
|
FontAttributes="Bold"
|
||||||
|
FontSize="24" Padding="15, 15, 20, 5"/>
|
||||||
|
<HorizontalStackLayout>
|
||||||
|
<VerticalStackLayout>
|
||||||
|
<Label Text="Informations personnelles :" TextColor="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource Gray100}}"
|
||||||
|
FontSize="20" Padding="15"/>
|
||||||
|
<Label Text="Nom :"
|
||||||
|
Padding="50,0,0,0"
|
||||||
|
FontSize="18"/>
|
||||||
|
<Entry BackgroundColor="#D1E8E2"
|
||||||
|
Margin="50,10,0,20"/>
|
||||||
|
<Label Text="Prénom :"
|
||||||
|
Padding="50,0,0,0"
|
||||||
|
FontSize="18"/>
|
||||||
|
<Entry BackgroundColor="#D1E8E2"
|
||||||
|
Margin="50,10,0,20"/>
|
||||||
|
<Label Text="Mail :"
|
||||||
|
Padding="50,0,0,0"
|
||||||
|
FontSize="18"/>
|
||||||
|
<Entry BackgroundColor="#D1E8E2"
|
||||||
|
Margin="50,10,0,20"/>
|
||||||
|
<Label Text="Pseudo :"
|
||||||
|
Padding="50,0,0,0"
|
||||||
|
FontSize="18"/>
|
||||||
|
<Entry BackgroundColor="#D1E8E2"
|
||||||
|
Margin="50,10,0,50"/>
|
||||||
|
<Button BackgroundColor="#bdf5bd"
|
||||||
|
Text="Valider"
|
||||||
|
Margin="40,0,0,0"
|
||||||
|
TextColor="Black"
|
||||||
|
MaximumWidthRequest="100"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
<VerticalStackLayout Padding="100,0,0,0">
|
||||||
|
<Label Text="Priorités du compte : " TextColor="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource Gray100}}"
|
||||||
|
FontSize="20" Padding="15"/>
|
||||||
|
<Grid BackgroundColor="#D1E8E2"
|
||||||
|
MinimumHeightRequest="300">
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="20"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="*"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Label Text="Recettes économiques" Grid.Row="0" Padding="5,0,0,0"/>
|
||||||
|
<BoxView Color="Black" HeightRequest="1" Margin="10,10,10,10" Grid.Row="1" />
|
||||||
|
<Label Text="Phrase 2" Grid.Row="2"/>
|
||||||
|
<BoxView Color="Black" HeightRequest="1" Margin="10,10,10,10" Grid.Row="3" />
|
||||||
|
<Label Text="Phrase 3" Grid.Row="4"/>
|
||||||
|
<BoxView Color="Black" HeightRequest="1" Margin="10,10,10,10" Grid.Row="5" />
|
||||||
|
<Label Text="Phrase 4" Grid.Row="6"/>
|
||||||
|
<BoxView Color="Black" HeightRequest="1" Margin="10,10,10,10" Grid.Row="7" />
|
||||||
|
<Label Text="Phrase 5" Grid.Row="8"/>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
|
||||||
|
</HorizontalStackLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</StackLayout>
|
||||||
|
</ScrollView>
|
||||||
|
|
||||||
|
</local:ContainerBase.MyContent>
|
||||||
|
|
||||||
|
</local:ContainerBase>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,9 @@
|
|||||||
|
namespace Views;
|
||||||
|
|
||||||
|
public partial class MyProfil : ContentPage
|
||||||
|
{
|
||||||
|
public MyProfil()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue