parent
ebed4c9c2f
commit
f4a530ba1d
@ -0,0 +1,12 @@
|
||||
<?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="Qwirkle.Pages.Leaderboard"
|
||||
Title="Leaderboard">
|
||||
<VerticalStackLayout>
|
||||
<Label
|
||||
Text="Leaderboard"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center" />
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Leaderboard : ContentPage
|
||||
{
|
||||
public Leaderboard()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
<?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="Qwirkle.Pages.Play"
|
||||
Title="Play">
|
||||
<VerticalStackLayout>
|
||||
<Label
|
||||
Text="Play"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center" />
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Play : ContentPage
|
||||
{
|
||||
public Play()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
<?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="Qwirkle.Pages.Scoreboard"
|
||||
Title="Scoreboard">
|
||||
<VerticalStackLayout>
|
||||
<Label
|
||||
Text="Scoreboard"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center" />
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Scoreboard : ContentPage
|
||||
{
|
||||
public Scoreboard()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
<?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="Qwirkle.Pages.Settings"
|
||||
Title="Settings">
|
||||
<VerticalStackLayout>
|
||||
<Label
|
||||
Text="Settings"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center" />
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Settings : ContentPage
|
||||
{
|
||||
public Settings()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 89 KiB |
Loading…
Reference in new issue