commit
1b50278ffa
@ -0,0 +1,54 @@
|
|||||||
|
<?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.NewPage2"
|
||||||
|
BackgroundColor="#e2edf1">
|
||||||
|
|
||||||
|
<Grid>
|
||||||
|
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="2*" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<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>
|
@ -0,0 +1,9 @@
|
|||||||
|
namespace Ohara;
|
||||||
|
|
||||||
|
public partial class NewPage2 : ContentPage
|
||||||
|
{
|
||||||
|
public NewPage2()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 2.0 MiB |
Loading…
Reference in new issue