diff --git a/TheGameExtreme/view/GamePreparationPage.xaml b/TheGameExtreme/view/GamePreparationPage.xaml new file mode 100644 index 0000000..a516022 --- /dev/null +++ b/TheGameExtreme/view/GamePreparationPage.xaml @@ -0,0 +1,7 @@ + + + + diff --git a/TheGameExtreme/view/GamePreparationPage.xaml.cs b/TheGameExtreme/view/GamePreparationPage.xaml.cs new file mode 100644 index 0000000..b4b4880 --- /dev/null +++ b/TheGameExtreme/view/GamePreparationPage.xaml.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; + +using Xamarin.Forms; + +namespace TheGameExtreme.view +{ + public partial class GamePreparationPage : ContentPage + { + public GamePreparationPage() + { + InitializeComponent(); + NavigationPage.SetHasNavigationBar(this, false); + } + } +}