On the specific page I'm creating, a user has an option to add any number of "players" by tapping the add button which opens up a bottom sheet where user can type in the name for that specific player and then tap the add button on the bottom sheet so that player can be added to the ListView.
My problem is that even though I have created a state variable which is a list of strings storing all the names that the user has typed in, I didn't manage to find a way to populate the ListView with those values.
More specifically, is it possible that whenever a user adds a new player, a custom component that I have created is added to the ListView with the text field inside of that component changed to the name that the user has assigned for that player?
Here are the images showing the said custom components and the page itself.