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.
40 lines
1.6 KiB
40 lines
1.6 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="ShoopNCook.Pages.MorePage"
|
|
BackgroundColor="{StaticResource BackgroundPrimary}"
|
|
xmlns:views="clr-namespace:ShoopNCook.Views"
|
|
Title="MorePage">
|
|
<Grid
|
|
RowDefinitions="Auto, *"
|
|
Padding="20, 50, 20, 20">
|
|
<!-- Profile picture and name -->
|
|
<Grid
|
|
Grid.Row="0"
|
|
ColumnDefinitions="*, 2*"
|
|
ColumnSpacing="30">
|
|
|
|
<Image
|
|
x:Name="ProfileImage"/>
|
|
|
|
<Label
|
|
x:Name="ProfileName"
|
|
Grid.Column="1"
|
|
FontSize="24"
|
|
VerticalTextAlignment="Center"
|
|
TextColor="{StaticResource TextColorPrimary}"
|
|
FontFamily="Poppins"/>
|
|
</Grid>
|
|
|
|
<VerticalStackLayout
|
|
Grid.Row="1"
|
|
VerticalOptions="Center"
|
|
Margin="40, 0, 0, 0">
|
|
<views:HeadedButton Text="My Recipes" HeadSource="cookie.svg" HeadColor="#FF5441"/>
|
|
<views:HeadedButton Text="Edit Profile" HeadSource="user_fill.svg" HeadColor="#FF5441"/>
|
|
<views:HeadedButton Text="Dark Mode" HeadSource="moon_white.svg" HeadColor="#FF5441"/>
|
|
<views:HeadedButton Text="Share App" HeadSource="share.svg" HeadColor="#FF5441"/>
|
|
<views:HeadedButton Text="Logout" HeadSource="logout_arrow.svg" HeadColor="#FF5441"/>
|
|
</VerticalStackLayout>
|
|
</Grid>
|
|
</ContentPage> |