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.
52 lines
1.6 KiB
52 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="MauiApp1.MainPage"
|
|
BackgroundColor="#1C1C1C">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="5*"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="2*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="4*"/>
|
|
<ColumnDefinition Width="3*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label
|
|
Grid.Column="1"
|
|
Grid.Row="1"
|
|
HorizontalOptions="Center"
|
|
VerticalOptions="Center"
|
|
Text="Notus"
|
|
TextColor="#74fabd"
|
|
FontSize="120"
|
|
FontAttributes="Bold"
|
|
FontFamily="strong"/>
|
|
|
|
<Button
|
|
Text="Connection"
|
|
TextColor="#74fabd"
|
|
FontSize="30"
|
|
Grid.Row="2"
|
|
Grid.Column="1"
|
|
HeightRequest="75"
|
|
BackgroundColor="#4A4A4A"/>
|
|
<Button
|
|
Text="Inscription"
|
|
TextColor="#74fabd"
|
|
FontSize="30"
|
|
Grid.Row="3"
|
|
Grid.Column="1"
|
|
HeightRequest="75"
|
|
BackgroundColor="#4A4A4A"/>
|
|
|
|
</Grid>
|
|
|
|
</ContentPage>
|