parent
f96d942f49
commit
17d19aa9ec
@ -0,0 +1,11 @@
|
||||
<?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.GoBack">
|
||||
<Button Text="Go Back"
|
||||
Grid.Column="0"
|
||||
Grid.Row="0"
|
||||
HorizontalOptions="Start"
|
||||
VerticalOptions="Center"
|
||||
/>
|
||||
</ContentView>
|
@ -0,0 +1,9 @@
|
||||
namespace Qwirkle.Views;
|
||||
|
||||
public partial class GoBack : ContentView
|
||||
{
|
||||
public GoBack()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue