-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml
50 lines (38 loc) · 1.32 KB
/
MainPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?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="Wise.MainPage">
<VerticalStackLayout
Spacing="25"
Padding="30"
VerticalOptions="Start">
<StackLayout>
<Label Text="Upload your profile pic!">
</Label>
</StackLayout>
<StackLayout Margin="10,10,10,10">
<!--Verify button to expand picture once selected.-->
<Image WidthRequest="300"
HeightRequest="300"
Source="tinder.png">
</Image>
</StackLayout>
<StackLayout>
<Button
Text="Select from your galery"
TextColor="#F1F1F1"
BackgroundColor="#FF5864"
WidthRequest="200"
CornerRadius="10"
HorizontalOptions="Center"
Margin="0,0,0,8"/>
<Button
Text="Upload"
TextColor="#F1F1F1"
BackgroundColor="#FF5864"
WidthRequest="200"
CornerRadius="10"
HorizontalOptions="Center"/>
</StackLayout>
</VerticalStackLayout>
</ContentPage>