From ff42ec068612311b684b5ca10299899bc692848c Mon Sep 17 00:00:00 2001 From: "jules.lascret" Date: Wed, 27 Mar 2024 19:23:29 +0100 Subject: [PATCH] Big leaderboard progress but still some refinement to be done --- Qwirkle/Qwirkle/Pages/Leaderboard.xaml | 159 +++++++----------- Qwirkle/Qwirkle/Views/LeaderboardLine.xaml | 46 +++++ Qwirkle/Qwirkle/Views/LeaderboardLine.xaml.cs | 15 ++ 3 files changed, 125 insertions(+), 95 deletions(-) create mode 100644 Qwirkle/Qwirkle/Views/LeaderboardLine.xaml create mode 100644 Qwirkle/Qwirkle/Views/LeaderboardLine.xaml.cs diff --git a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml index 3eaffe6..acb1b3b 100644 --- a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml +++ b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml @@ -2,101 +2,70 @@ - - + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Views/LeaderboardLine.xaml b/Qwirkle/Qwirkle/Views/LeaderboardLine.xaml new file mode 100644 index 0000000..6b00533 --- /dev/null +++ b/Qwirkle/Qwirkle/Views/LeaderboardLine.xaml @@ -0,0 +1,46 @@ + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Views/LeaderboardLine.xaml.cs b/Qwirkle/Qwirkle/Views/LeaderboardLine.xaml.cs new file mode 100644 index 0000000..33d7acb --- /dev/null +++ b/Qwirkle/Qwirkle/Views/LeaderboardLine.xaml.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Qwirkle.Views; + +public partial class LeaderboardLine : ContentView +{ + public LeaderboardLine() + { + InitializeComponent(); + } +} \ No newline at end of file