|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
x:Class="Qwirkle.Views.LeaderboardLine">
|
|
|
|
|
<Grid ColumnDefinitions="4*, 2*, 2*, 2*"
|
|
|
|
|
<Grid ColumnDefinitions="4*, auto, 2*, auto, 2*, auto, 2*"
|
|
|
|
|
RowDefinitions="50">
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
@ -11,33 +11,52 @@
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
FontSize="Medium"
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
Padding="5, 0"
|
|
|
|
|
Text="Player Tag"
|
|
|
|
|
TextColor="DarkSlateGrey"
|
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
<Rectangle WidthRequest="2"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
Grid.RowSpan="20"
|
|
|
|
|
BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
Grid.Row="0"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
Grid.Column="2"
|
|
|
|
|
FontSize="Medium"
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
Padding="5, 0"
|
|
|
|
|
Text="Date"
|
|
|
|
|
TextColor="DarkSlateGrey"
|
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
<Rectangle WidthRequest="2"
|
|
|
|
|
Grid.Column="3"
|
|
|
|
|
Grid.RowSpan="20"
|
|
|
|
|
BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
Grid.Row="0"
|
|
|
|
|
Grid.Column="2"
|
|
|
|
|
Grid.Column="4"
|
|
|
|
|
FontSize="Medium"
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
Padding="5, 0"
|
|
|
|
|
Text="Points"
|
|
|
|
|
TextColor="DarkSlateGrey"
|
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
<Rectangle WidthRequest="2"
|
|
|
|
|
Grid.Column="5"
|
|
|
|
|
Grid.RowSpan="20"
|
|
|
|
|
BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
Grid.Row="0"
|
|
|
|
|
Grid.Column="3"
|
|
|
|
|
Grid.Column="6"
|
|
|
|
|
FontSize="Medium"
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
Padding="5, 0"
|
|
|
|
|
Text="Victories"
|
|
|
|
|
TextColor="DarkSlateGrey"
|
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
|