diff --git a/TheGameExtreme/Rules.xaml b/TheGameExtreme/Rules.xaml new file mode 100644 index 0000000..1eac67c --- /dev/null +++ b/TheGameExtreme/Rules.xaml @@ -0,0 +1,13 @@ + + + + + + + \ No newline at end of file diff --git a/TheGameExtreme/Rules.xaml.cs b/TheGameExtreme/Rules.xaml.cs new file mode 100644 index 0000000..72b96f8 --- /dev/null +++ b/TheGameExtreme/Rules.xaml.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +using Xamarin.Forms; +using Xamarin.Forms.Xaml; + +namespace TheGameExtreme +{ + [XamlCompilation(XamlCompilationOptions.Compile)] + public partial class Rules : ContentView + { + public Rules() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/TheGameExtreme/TheGameExtreme.csproj b/TheGameExtreme/TheGameExtreme.csproj index c42e40e..9e1e29f 100644 --- a/TheGameExtreme/TheGameExtreme.csproj +++ b/TheGameExtreme/TheGameExtreme.csproj @@ -22,6 +22,10 @@ + + + + @@ -32,6 +36,9 @@ ResXFileCodeGenerator AppRessources-br.Designer.cs + + MSBuild:UpdateDesignTimeXaml + PublicResXFileCodeGenerator AppResources.Designer.cs diff --git a/TheGameExtreme/view/HomePage.xaml b/TheGameExtreme/view/HomePage.xaml index 4ce4767..069fa44 100644 --- a/TheGameExtreme/view/HomePage.xaml +++ b/TheGameExtreme/view/HomePage.xaml @@ -6,8 +6,31 @@ mc:Ignorable="d" x:Class="TheGameExtreme.view.HomePage"> - - + + + + + + + + + + 1 + 2 + 3 + 4 + 5 + + + + + + + + + + + \ No newline at end of file diff --git a/TheGameExtreme/view/HomePage.xaml.cs b/TheGameExtreme/view/HomePage.xaml.cs index 8572dd1..3237411 100644 --- a/TheGameExtreme/view/HomePage.xaml.cs +++ b/TheGameExtreme/view/HomePage.xaml.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; + using Xamarin.Forms; using Xamarin.Forms.Xaml; @@ -12,9 +13,16 @@ namespace TheGameExtreme.view [XamlCompilation(XamlCompilationOptions.Compile)] public partial class HomePage : ContentView { + ListView NbplayersSelected = new ListView(); public HomePage() { InitializeComponent(); } + async void OnRulesButtonClicked(object sender, EventArgs e) + { + + } + + } } \ No newline at end of file diff --git a/TheGameExtreme/view/Image/thegame.jpg b/TheGameExtreme/view/Image/thegame.jpg new file mode 100644 index 0000000..524a62e Binary files /dev/null and b/TheGameExtreme/view/Image/thegame.jpg differ