Good question! This is definitely possible. I've put together a quick demo for you to inspect. I chose basketball because it's my favorite sport and because you only need 5 players, so it was less work to put together.
The main program is here and the code is publicly available:
https://www.guidedtrack.com/programs/19411/edit
It asks you to enter a player for each position, then displays the five players you've entered. Clicking on a player allows you to edit their details.
The code is pretty straight-forward. The only tricky part is the use of *component
inside a *for
loop, which also makes it necessary to use *with
in order to handle clicking each component properly. You can read more about this in the documentation.
If you want to try the dashboard out, the link it here: https://www.guidedtrack.com/programs/49riqjl/run.
I expect you'll have follow-up questions, so please ask away.