|
|
@ -2,11 +2,53 @@
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
x:Class="Ohara.NewPage2"
|
|
|
|
x:Class="Ohara.NewPage2"
|
|
|
|
Title="NewPage2">
|
|
|
|
BackgroundColor="#e2edf1">
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
|
|
|
<Label
|
|
|
|
<Grid>
|
|
|
|
Text="Welcome to .NET MAUI!"
|
|
|
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
<RowDefinition Height="2*" />
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
</ContentPage>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<ColumnDefinition Width="300" />
|
|
|
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<VerticalStackLayout BackgroundColor="#72a3b3" Grid.Row="0" Grid.Column="0" Spacing="10">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Image Source="ohara2.png" HeightRequest="300" HorizontalOptions="Center" >
|
|
|
|
|
|
|
|
<Image.Clip>
|
|
|
|
|
|
|
|
<EllipseGeometry Center="150,90" RadiusX="80" RadiusY="80"/>
|
|
|
|
|
|
|
|
</Image.Clip>
|
|
|
|
|
|
|
|
</Image>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Acceuil"/>
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Carte"/>
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu2}" Text="Personnages"/>
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Fruits du démon"/>
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Bateaux"/>
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Îles"/>
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Bestiaire"/>
|
|
|
|
|
|
|
|
<Button Style="{StaticResource buttonMenu}" Text="Équipages"/>
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
<VerticalStackLayout Grid.Row="0" Grid.Column="1" Spacing="40">
|
|
|
|
|
|
|
|
<ScrollView Orientation="Horizontal">
|
|
|
|
|
|
|
|
<Image Source="luffy.png" HeightRequest="800" HorizontalOptions="Start" Margin="30,30,0,0"/>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--<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>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</ContentPage>
|
|
|
|