|
|
|
@ -2,101 +2,70 @@
|
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
x:Class="Qwirkle.Pages.Leaderboard"
|
|
|
|
|
xmlns:controls="clr-namespace:Qwirkle.Views"
|
|
|
|
|
Title="Leaderboard">
|
|
|
|
|
<VerticalStackLayout BackgroundColor="#efca85" Spacing="75">
|
|
|
|
|
<Label
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
FontFamily="Sitka"
|
|
|
|
|
FontSize="Header"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Padding="5"
|
|
|
|
|
Text="Leaderboard"
|
|
|
|
|
TextColor="#261a1a"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
/>
|
|
|
|
|
<ScrollView>
|
|
|
|
|
<VerticalStackLayout Spacing="50">
|
|
|
|
|
<Label
|
|
|
|
|
Text="Leaderboard"
|
|
|
|
|
TextColor="DarkSlateGrey"
|
|
|
|
|
FontSize="Header"
|
|
|
|
|
HorizontalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="50" />
|
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="6*" />
|
|
|
|
|
<ColumnDefinition Width="3*" />
|
|
|
|
|
<ColumnDefinition Width="2*" />
|
|
|
|
|
<ColumnDefinition Width="2*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Black" StrokeThickness="0.5"/>
|
|
|
|
|
<Label Text="Player Tag"
|
|
|
|
|
TextColor="#1A2541"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
FontSize="Medium"
|
|
|
|
|
HorizontalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Black" StrokeThickness="0.5" Grid.Column="1"/>
|
|
|
|
|
<Label Text="Date"
|
|
|
|
|
TextColor="#1A2541"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
FontSize="Medium"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Grid.Column="1"/>
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Black" StrokeThickness="0.5" Grid.Column="2"/>
|
|
|
|
|
<Label Text="Points"
|
|
|
|
|
TextColor="#1A2541"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
FontSize="Medium"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Grid.Column="2"/>
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Black" StrokeThickness="0.5" Grid.Column="3"/>
|
|
|
|
|
<Label Text="Victories"
|
|
|
|
|
TextColor="#1A2541"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
FontSize="Medium"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Grid.Column="3"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Black" StrokeThickness="0.5" Grid.Row="1"/>
|
|
|
|
|
<Label Text="Le A"
|
|
|
|
|
TextColor="#1A2541"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Grid.Row="1"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Black" StrokeThickness="0.5" Grid.Row="1" Grid.Column="1"/>
|
|
|
|
|
<Label Text="03/25/2024"
|
|
|
|
|
TextColor="#1A2541"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Grid.Column="1"/>
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Black" StrokeThickness="0.5" Grid.Row="1" Grid.Column="2"/>
|
|
|
|
|
<Label Text="103"
|
|
|
|
|
TextColor="#1A2541"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Grid.Column="2"/>
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Black" StrokeThickness="0.5" Grid.Row="1" Grid.Column="3"/>
|
|
|
|
|
<Label Text="3"
|
|
|
|
|
TextColor="#1A2541"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Grid.Column="3"/>
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
<Border Stroke="Black"
|
|
|
|
|
StrokeThickness="1.5"
|
|
|
|
|
Margin="5">
|
|
|
|
|
<Border.StrokeShape>
|
|
|
|
|
<RoundRectangle CornerRadius="10"/>
|
|
|
|
|
</Border.StrokeShape>
|
|
|
|
|
|
|
|
|
|
<VerticalStackLayout Padding="10">
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
|
|
|
|
|
<controls:LeaderboardLine></controls:LeaderboardLine>
|
|
|
|
|
<Rectangle HeightRequest="2" BackgroundColor="Black"/>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</Border>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</ContentPage>
|