I have an int of the numbers of players and of this number I need to generate the numbers of entries for the player's name. I created 24 entries and made them visible and not visible but I think this is not "clever".
I tested a little bit like:
var layout = new Stacklayout();
var playerentry = new Entry {Text = "Test"};
layout.children.Add(playerentry);
combining this with a for loop with i = number of players it doesn't work.
Maybe someone can help this easy question. UPDATE:
This is the complete code: