diff --git a/TheGameExtreme.Android/Resources/Resource.designer.cs b/TheGameExtreme.Android/Resources/Resource.designer.cs
index 021041d..b331b96 100644
--- a/TheGameExtreme.Android/Resources/Resource.designer.cs
+++ b/TheGameExtreme.Android/Resources/Resource.designer.cs
@@ -1,11 +1,11 @@
#pragma warning disable 1591
//------------------------------------------------------------------------------
//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
+// Ce code a été généré par un outil.
+// Version du runtime :4.0.30319.42000
//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
+// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
+// le code est régénéré.
//
//------------------------------------------------------------------------------
@@ -5740,64 +5740,67 @@ namespace TheGameExtreme.Droid
public const int Engrenage = 2131165283;
// aapt resource value: 0x7F070064
- public const int ic_mtrl_chip_checked_black = 2131165284;
+ public const int EngrenageV1 = 2131165284;
// aapt resource value: 0x7F070065
- public const int ic_mtrl_chip_checked_circle = 2131165285;
+ public const int ic_mtrl_chip_checked_black = 2131165285;
// aapt resource value: 0x7F070066
- public const int ic_mtrl_chip_close_circle = 2131165286;
+ public const int ic_mtrl_chip_checked_circle = 2131165286;
// aapt resource value: 0x7F070067
- public const int mtrl_snackbar_background = 2131165287;
+ public const int ic_mtrl_chip_close_circle = 2131165287;
// aapt resource value: 0x7F070068
- public const int mtrl_tabs_default_indicator = 2131165288;
+ public const int mtrl_snackbar_background = 2131165288;
// aapt resource value: 0x7F070069
- public const int navigation_empty_icon = 2131165289;
+ public const int mtrl_tabs_default_indicator = 2131165289;
// aapt resource value: 0x7F07006A
- public const int notification_action_background = 2131165290;
+ public const int navigation_empty_icon = 2131165290;
// aapt resource value: 0x7F07006B
- public const int notification_bg = 2131165291;
+ public const int notification_action_background = 2131165291;
// aapt resource value: 0x7F07006C
- public const int notification_bg_low = 2131165292;
+ public const int notification_bg = 2131165292;
// aapt resource value: 0x7F07006D
- public const int notification_bg_low_normal = 2131165293;
+ public const int notification_bg_low = 2131165293;
// aapt resource value: 0x7F07006E
- public const int notification_bg_low_pressed = 2131165294;
+ public const int notification_bg_low_normal = 2131165294;
// aapt resource value: 0x7F07006F
- public const int notification_bg_normal = 2131165295;
+ public const int notification_bg_low_pressed = 2131165295;
// aapt resource value: 0x7F070070
- public const int notification_bg_normal_pressed = 2131165296;
+ public const int notification_bg_normal = 2131165296;
// aapt resource value: 0x7F070071
- public const int notification_icon_background = 2131165297;
+ public const int notification_bg_normal_pressed = 2131165297;
// aapt resource value: 0x7F070072
- public const int notification_template_icon_bg = 2131165298;
+ public const int notification_icon_background = 2131165298;
// aapt resource value: 0x7F070073
- public const int notification_template_icon_low_bg = 2131165299;
+ public const int notification_template_icon_bg = 2131165299;
// aapt resource value: 0x7F070074
- public const int notification_tile_bg = 2131165300;
+ public const int notification_template_icon_low_bg = 2131165300;
// aapt resource value: 0x7F070075
- public const int notify_panel_notification_icon_bg = 2131165301;
+ public const int notification_tile_bg = 2131165301;
// aapt resource value: 0x7F070076
- public const int tooltip_frame_dark = 2131165302;
+ public const int notify_panel_notification_icon_bg = 2131165302;
// aapt resource value: 0x7F070077
- public const int tooltip_frame_light = 2131165303;
+ public const int tooltip_frame_dark = 2131165303;
+
+ // aapt resource value: 0x7F070078
+ public const int tooltip_frame_light = 2131165304;
static Drawable()
{
diff --git a/TheGameExtreme.Android/Resources/drawable/EngrenageV1.png b/TheGameExtreme.Android/Resources/drawable/EngrenageV1.png
new file mode 100644
index 0000000..b3df1f3
Binary files /dev/null and b/TheGameExtreme.Android/Resources/drawable/EngrenageV1.png differ
diff --git a/TheGameExtreme.Android/TheGameExtreme.Android.csproj b/TheGameExtreme.Android/TheGameExtreme.Android.csproj
index e7930ca..48ba1a0 100644
--- a/TheGameExtreme.Android/TheGameExtreme.Android.csproj
+++ b/TheGameExtreme.Android/TheGameExtreme.Android.csproj
@@ -107,5 +107,8 @@
+
+
+
\ No newline at end of file
diff --git a/TheGameExtreme.iOS/AppDelegate.cs b/TheGameExtreme.iOS/AppDelegate.cs
index dc02e62..d76a89b 100644
--- a/TheGameExtreme.iOS/AppDelegate.cs
+++ b/TheGameExtreme.iOS/AppDelegate.cs
@@ -23,6 +23,7 @@ namespace TheGameExtreme.iOS
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
+ global::Xamarin.Forms.FormsMaterial.Init();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
diff --git a/TheGameExtreme.iOS/Resources/EngrenageV1.png b/TheGameExtreme.iOS/Resources/EngrenageV1.png
new file mode 100644
index 0000000..b3df1f3
Binary files /dev/null and b/TheGameExtreme.iOS/Resources/EngrenageV1.png differ
diff --git a/TheGameExtreme/TheGameExtreme.csproj b/TheGameExtreme/TheGameExtreme.csproj
index fe9e2e5..c9b9f51 100644
--- a/TheGameExtreme/TheGameExtreme.csproj
+++ b/TheGameExtreme/TheGameExtreme.csproj
@@ -6,7 +6,7 @@
-
+
diff --git a/TheGameExtreme/view/HomePage.xaml b/TheGameExtreme/view/HomePage.xaml
index f255c97..96a7d5d 100644
--- a/TheGameExtreme/view/HomePage.xaml
+++ b/TheGameExtreme/view/HomePage.xaml
@@ -1,11 +1,12 @@
-
+
@@ -16,42 +17,49 @@
-
-
-