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.
24 lines
753 B
24 lines
753 B
2 years ago
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
x:Class="IHM.Desktop.CV_HomePage">
|
||
|
|
||
|
<Grid BackgroundColor="{StaticResource Tertiary}">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="1*"/>
|
||
|
<RowDefinition Height="1*"/>
|
||
|
<RowDefinition Height="1*"/>
|
||
|
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<Label Grid.Row="1"
|
||
|
|
||
|
Text="Bienvenue sur CONS'ECO"
|
||
|
FontSize="Large"
|
||
|
FontAttributes="Bold"
|
||
|
VerticalOptions="Center"
|
||
|
HorizontalOptions="Center"
|
||
|
/>
|
||
|
</Grid>
|
||
|
</ContentView>
|