Creating a Table/Leaderboard/Ranking system

Hello!
So I made an app for soccer stats and I currently face difficulties making a leaderboard as in the image attached.

I want to do the same thing in my app. And I want to make a list with Teams followed by: wins, draws, loses, games played and team points.
And I want every time I add one of those to one of the teams, the points to be increased.
1 win = 3 points
1 draw = 1 point
1 lose = 0 points
As you can see in the image, FC Barcelona has 6 points because they’ve won 2 games.

I don’t know how to explain this any better but I hope you understood.

I hope you guys can help me with this problem. Thank you so much for your effort!

Have you design collections yet ?

It is first step to tell what your app can do.

For sorting based on number, it can be used in list’s left panel, but unfortunately only 1 sort for each list, meaning it is hard coded, meaning user cannot change its sorting, so to make a workaround, we use multiple list that is set with visibility, so we need additional input field that tell which list will be visible.

For adding score to number property, just add a button inside the list, then you can find action that update to current record, with existing number + score (such as 3), you can make 2 buttons or 3 buttons, it is up to you to design the UX.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.