added club, shuriken and star tiles

test_old_branch
Jules LASCRET 1 year ago
parent 3062f8f945
commit eb1c2f9314

@ -88,6 +88,9 @@
<controls:TileSquare/>
<controls:TileRhombus/>
<controls:TileCircle/>
<controls:TileStar/>
<controls:TileShuriken/>
<controls:TileClub/>
</VerticalStackLayout>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Qwirkle.Views.TileClub">
<Grid>
<Rectangle HeightRequest="600"
Grid.Row="0"
Grid.Column="0"
WidthRequest="600"
VerticalOptions="Center"
HorizontalOptions="Center"
BackgroundColor="{StaticResource Gray800}" />
<Image Source="club.png"
Grid.Row="0"
Grid.Column="0"
WidthRequest="600"
HeightRequest="600" />
</Grid>
</ContentView>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Qwirkle.Views;
public partial class TileClub : ContentView
{
public TileClub()
{
InitializeComponent();
}
}

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Qwirkle.Views.TileShuriken">
<Grid>
<Rectangle HeightRequest="600"
Grid.Row="0"
Grid.Column="0"
WidthRequest="600"
VerticalOptions="Center"
HorizontalOptions="Center"
BackgroundColor="{StaticResource Gray800}" />
<Image Source="shuriken.png"
Grid.Row="0"
Grid.Column="0"
WidthRequest="600"
HeightRequest="600" />
</Grid>
</ContentView>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Qwirkle.Views;
public partial class TileShuriken : ContentView
{
public TileShuriken()
{
InitializeComponent();
}
}

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Qwirkle.Views.TileStar">
<Grid>
<Rectangle HeightRequest="600"
Grid.Row="0"
Grid.Column="0"
WidthRequest="600"
VerticalOptions="Center"
HorizontalOptions="Center"
BackgroundColor="{StaticResource Gray800}" />
<Image Source="star.png"
Grid.Row="0"
Grid.Column="0"
WidthRequest="600"
HeightRequest="600"/>
</Grid>
</ContentView>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Qwirkle.Views;
public partial class TileStar : ContentView
{
public TileStar()
{
InitializeComponent();
}
}
Loading…
Cancel
Save