-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBluePage.xaml
27 lines (24 loc) · 1.26 KB
/
BluePage.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
<?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="NavPageDemo.BluePage"
Title="BluePage" BackgroundColor="LightBlue">
<ScrollView>
<Grid RowDefinitions="Auto, *, 60" ColumnDefinitions="*" Margin="20, 30, 20, 10">
<Label Grid.Row="0"
Text="Welcome to the Blue page!" TextColor="DarkBlue"
FontSize="Large" FontFamily="OpenSans_Semibold"
VerticalOptions="Center"
HorizontalOptions="Center"/>
<HorizontalStackLayout Grid.Row="2" Spacing="20"
HorizontalOptions="Center" VerticalOptions="Center">
<Button BackgroundColor="White" Clicked="GoMain"
WidthRequest="50" HeightRequest="50" BorderColor="Black"/>
<Button BackgroundColor="PaleVioletRed" Clicked="GoRed"
WidthRequest="50" HeightRequest="50" BorderColor="Black"/>
<Button BackgroundColor="LightGreen" Clicked="GoGreen"
WidthRequest="50" HeightRequest="50" BorderColor="Black"/>
</HorizontalStackLayout>
</Grid>
</ScrollView>
</ContentPage>