parent
fc5d386f57
commit
ff42ec0686
@ -0,0 +1,46 @@
|
|||||||
|
<?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.LeaderboardLine">
|
||||||
|
<Grid ColumnDefinitions="4*, 2*, 2*, 2*"
|
||||||
|
RowDefinitions="50">
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="0"
|
||||||
|
FontSize="Medium"
|
||||||
|
FontAttributes="Bold"
|
||||||
|
Text="Player Tag"
|
||||||
|
TextColor="DarkSlateGrey"
|
||||||
|
VerticalOptions="Center"/>
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="1"
|
||||||
|
FontSize="Medium"
|
||||||
|
FontAttributes="Bold"
|
||||||
|
Text="Date"
|
||||||
|
TextColor="DarkSlateGrey"
|
||||||
|
VerticalOptions="Center"/>
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="2"
|
||||||
|
FontSize="Medium"
|
||||||
|
FontAttributes="Bold"
|
||||||
|
Text="Points"
|
||||||
|
TextColor="DarkSlateGrey"
|
||||||
|
VerticalOptions="Center"/>
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="3"
|
||||||
|
FontSize="Medium"
|
||||||
|
FontAttributes="Bold"
|
||||||
|
Text="Victories"
|
||||||
|
TextColor="DarkSlateGrey"
|
||||||
|
VerticalOptions="Center"/>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</ContentView>
|
Loading…
Reference in new issue