Guilhermes
This commit is contained in:
24
GuilhermesApp/Pages/ProfilePage.xaml
Normal file
24
GuilhermesApp/Pages/ProfilePage.xaml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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="GuilhermesApp.Pages.ProfilePage"
|
||||
Shell.NavBarIsVisible="False"
|
||||
Title="Perfil">
|
||||
|
||||
<VerticalStackLayout Spacing="20" Padding="30" VerticalOptions="Center">
|
||||
|
||||
<Label Text="O Meu Perfil" FontSize="32" HorizontalOptions="Center" FontAttributes="Bold" />
|
||||
|
||||
<ActivityIndicator x:Name="LoadingIndicator" IsRunning="True" HorizontalOptions="Center" Color="Blue" />
|
||||
|
||||
<VerticalStackLayout x:Name="ProfileInfoLayout" IsVisible="False" Spacing="10" HorizontalOptions="Center">
|
||||
<Label x:Name="NomeLabel" FontSize="22" FontAttributes="Bold" HorizontalOptions="Center" />
|
||||
<Label x:Name="EmailLabel" FontSize="16" TextColor="Gray" HorizontalOptions="Center" />
|
||||
<Label x:Name="TelemovelLabel" FontSize="16" HorizontalOptions="Center" />
|
||||
<Label x:Name="GeneroLabel" FontSize="16" HorizontalOptions="Center" />
|
||||
</VerticalStackLayout>
|
||||
|
||||
<Button Text="Terminar Sessão" Clicked="OnLogoutClicked" BackgroundColor="Red" TextColor="White" Margin="0,30,0,0" />
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
||||
Reference in New Issue
Block a user