24 lines
1.3 KiB
XML
24 lines
1.3 KiB
XML
<?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> |