parent
6b24c7657f
commit
255714ee74
@ -0,0 +1,35 @@
|
|||||||
|
<?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.Views.MorePage"
|
||||||
|
BackgroundColor="{StaticResource BackgroundPrimary}"
|
||||||
|
Title="MorePage">
|
||||||
|
<Grid
|
||||||
|
RowDefinitions="Auto, *">
|
||||||
|
<!-- Profile picture and name -->
|
||||||
|
<HorizontalStackLayout
|
||||||
|
Grid.Row="0">
|
||||||
|
|
||||||
|
<Border
|
||||||
|
Grid.Row="0"
|
||||||
|
StrokeShape="RoundRectangle 10000"
|
||||||
|
MaximumHeightRequest="150"
|
||||||
|
MaximumWidthRequest="150"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
Stroke="{StaticResource BackgroundPrimary}"
|
||||||
|
BackgroundColor="{StaticResource BackgroundSecondary}">
|
||||||
|
<ImageButton
|
||||||
|
Grid.Row="0"
|
||||||
|
Source="default_profile_picture.png"/>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Grid.Row="1"
|
||||||
|
FontSize="30"
|
||||||
|
VerticalTextAlignment="Center"
|
||||||
|
TextColor="{StaticResource TextColorPrimary}"
|
||||||
|
Text="%Profile_Name%"
|
||||||
|
FontFamily="PoppinsBold"/>
|
||||||
|
</HorizontalStackLayout>
|
||||||
|
</Grid>
|
||||||
|
</ContentPage>
|
@ -0,0 +1,9 @@
|
|||||||
|
namespace ShoopNCook.Views;
|
||||||
|
|
||||||
|
public partial class MorePage : ContentPage
|
||||||
|
{
|
||||||
|
public MorePage()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue