You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ContentPage
|
|
BackgroundColor="{DynamicResource BlackColor}"
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="TheGameExtreme.view.GamePreparationPage">
|
|
|
|
<Grid
|
|
Margin="0,30,0,0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="35*" />
|
|
<RowDefinition Height="55*"/>
|
|
<RowDefinition Height="10*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="50*" />
|
|
<ColumnDefinition Width="50*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackLayout
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="1">
|
|
<Label x:Name="Instruction"/>
|
|
</StackLayout>
|
|
|
|
<StackLayout
|
|
Grid.Row="1"
|
|
Grid.Column="0">
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout
|
|
Grid.Row="1"
|
|
Grid.Column="1">
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout
|
|
Grid.Row="2"
|
|
Grid.Column="0">
|
|
|
|
</StackLayout>
|
|
|
|
</Grid>
|
|
|
|
</ContentPage>
|