ADD design bouton pour scrollview de la searchpage et par search fini jsute couleur à compléter d'abord.

pull/32/head
parent bf75eb64ce
commit 7b9ad5b056

@ -5,4 +5,6 @@ Blondeau Nicolas
Doumir Fernandes Yannis
L'application porte sur le thème de Minecraft. C'est un guide d'utilisation sur les monstres Minecraft.
Il est possible de voir les statistiuques du monstre choisi
Il est possible de voir les statistiques du monstre choisi.
Source image : https://fr-minecraft.net/15-creatures-mobs-animaux-sur-minecraft.php

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 782 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

@ -40,7 +40,7 @@
<Color x:Key="Blue100Accent">#3E8EED</Color>
<Color x:Key="Blue200Accent">#72ACF1</Color>
<Color x:Key="Blue300Accent">#A7CBF6</Color>
<!--Nos couleurs-->
<Color x:Key="buttonBackgroundColor">#6193b7</Color>

@ -3,6 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
x:Class="Vues.SearchMob"
BackgroundImageSource="backsearchpage.png"
>
<toolkit:DockLayout>
@ -11,33 +12,121 @@
<VerticalStackLayout
BackgroundColor="#153f5d"
toolkit:DockLayout.DockPosition="Left"
WidthRequest="350">
WidthRequest="300"
>
<Button Text="déconnexion"
<Button Text="Accueil"
FontSize="10"
BackgroundColor="#6193b7"/>
<SearchBar Placeholder="Rechercher un monstre"
PlaceholderColor="DimGray"
CancelButtonColor="DimGray"/>
<VerticalStackLayout>
<ScrollView VerticalScrollBarVisibility="Always"
HeightRequest="700">
<StackLayout>
<!-- Mob Hostile-->
<ImageButton Source="zombie.png"
WidthRequest="303"/>
<ImageButton Source="squelette.png"
WidthRequest="303"/>
<ImageButton Source="creeper.png"
WidthRequest="303"/>
<ImageButton Source="araignee.png"
WidthRequest="303"/>
<ImageButton Source="phantom.png"
WidthRequest="303"/>
<ImageButton Source="enderman.png"
WidthRequest="303"/>
<!-- Mob Passif -->
<ImageButton Source="cow.png"
WidthRequest="303"/>
<ImageButton Source="sheep.png"
WidthRequest="303"/>
<ImageButton Source="pig.png"
WidthRequest="303"/>
<ImageButton Source="poule.png"
WidthRequest="303"/>
<ImageButton Source="loup.png"
WidthRequest="303"/>
<!-- Boss -->
<ImageButton Source="wither.png"
WidthRequest="303"/>
<ImageButton Source="dragon.png"
WidthRequest="303"/>
<ImageButton Source="warden.png"
WidthRequest="303"/>
</StackLayout>
</ScrollView>
</VerticalStackLayout>
</VerticalStackLayout>
<VerticalStackLayout
BackgroundColor="#6193b7"
toolkit:DockLayout.DockPosition="Right"
WidthRequest="600">
<toolkit:DockLayout
</VerticalStackLayout>
BackgroundColor="Black"
toolkit:DockLayout.DockPosition="Right"
WidthRequest="500"
>
<Image Source="zoombie.png"
HeightRequest="400"
Margin="-10, 50, 0, 0"
BackgroundColor="#6193b7"
toolkit:DockLayout.DockPosition="Top"/>
<Label
BackgroundColor="White"
toolkit:DockLayout.DockPosition="Bottom"
Padding="30, 30, 30, 30"
Margin="40"
Text="Particularité :"
FontSize="Medium">
</Label>
</toolkit:DockLayout>
<VerticalStackLayout
BackgroundColor="#6193b7"
BackgroundColor="NavajoWhite"
toolkit:DockLayout.DockPosition="Top">
<Label
BackgroundColor="White"
toolkit:DockLayout.DockPosition="Bottom"
Padding="30, 30, 30, 30"
Margin="40, 80, 40, 80"
Text="Caractéristiques :"
FontSize="Medium">
</Label>
<Label
BackgroundColor="White"
toolkit:DockLayout.DockPosition="Bottom"
Padding="30, 30, 30, 80"
Margin="40"
Text="Conseil :"
FontSize="Medium">
</Label>
<Label
BackgroundColor="White"
toolkit:DockLayout.DockPosition="Bottom"
Padding="30, 30, 30, 80"
Margin="40"
Text="Apparence :"
FontSize="Medium">
</Label>
</VerticalStackLayout>

Loading…
Cancel
Save