|
|
|
@ -1,33 +1,38 @@
|
|
|
|
|
<?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="Ohara.MainPage">
|
|
|
|
|
|
|
|
|
|
x:Class="Ohara.MainPage"
|
|
|
|
|
BackgroundColor="#e2edf1">
|
|
|
|
|
|
|
|
|
|
<ScrollView>
|
|
|
|
|
|
|
|
|
|
<VerticalStackLayout
|
|
|
|
|
Spacing="25"
|
|
|
|
|
Padding="30,0"
|
|
|
|
|
VerticalOptions="Center">
|
|
|
|
|
|
|
|
|
|
<Rectangle WidthRequest="200" HeightRequest="300" HorizontalOptions="Start" BackgroundColor="#72a3b3">
|
|
|
|
|
<Rectangle.Fill>
|
|
|
|
|
<LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
|
|
|
|
|
<GradientStop Color="#cdffd8" Offset="0.0" />
|
|
|
|
|
|
|
|
|
|
<GradientStop Color="#94b9ff" Offset="1.0" />
|
|
|
|
|
</LinearGradientBrush>
|
|
|
|
|
</Rectangle.Fill>
|
|
|
|
|
</Rectangle>
|
|
|
|
|
|
|
|
|
|
<Frame CornerRadius="20" BorderColor="#72a3b3" BackgroundColor="#72a3b3" Padding="20" WidthRequest="400">
|
|
|
|
|
<Label Text="Bienvenue sur Ohara !" FontAttributes="Bold" FontSize="30" HorizontalOptions="Center" TextColor="White"/>
|
|
|
|
|
|
|
|
|
|
</Frame>
|
|
|
|
|
<Image
|
|
|
|
|
Source="dotnet_bot.png"
|
|
|
|
|
Source="ohara2.png"
|
|
|
|
|
SemanticProperties.Description="Cute dot net bot waving hi to you!"
|
|
|
|
|
HeightRequest="200"
|
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
Text="Hello, World!"
|
|
|
|
|
SemanticProperties.HeadingLevel="Level1"
|
|
|
|
|
FontSize="32"
|
|
|
|
|
HeightRequest="400"
|
|
|
|
|
|
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
Text="Welcome to .NET Multi-platform App UI"
|
|
|
|
|
SemanticProperties.HeadingLevel="Level2"
|
|
|
|
|
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
|
|
|
|
|
FontSize="18"
|
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
x:Name="CounterBtn"
|
|
|
|
|
Text="Click me"
|
|
|
|
@ -37,5 +42,5 @@
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</ContentPage>
|
|
|
|
|