-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml
34 lines (32 loc) · 1.44 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
<?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="BXMT.MainPage"
Shell.NavBarIsVisible="False">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Grid.ColumnSpan="2" Grid.Row="0"
Text="Welcome to BXMT" HorizontalTextAlignment="Center"
VerticalTextAlignment="Center" Padding="0,20,0,20"
HorizontalOptions="FillAndExpand" VerticalOptions="Start" />
<Frame Grid.Row="1"
BorderColor="LightGray" BackgroundColor="Transparent"
VerticalOptions="FillAndExpand" Margin="40">
<Label Text="Nothing is here." HorizontalTextAlignment="Center"
VerticalTextAlignment="Center" TextColor="Gray"/>
</Frame>
<StackLayout Grid.Row="1" Grid.Column="2"
Padding="20,0,20,0" Spacing="20"
Margin="40" VerticalOptions="CenterAndExpand">
<Button Text="Open existing project..."/>
<Button Text="Create new project..."/>
</StackLayout>
</Grid>
</ContentPage>