How do I load a value on TextField in JetpackCompose
I have this TextField that I want it to load a name a get from an object in Firestore and then I want to be able to change the value and update in Firestore. I tried a few ways but when I load the value I cannot change it or the app crashes.
Below is my last attempt where the textField (editText) appears blank. I need to load the players.name in the textField so I can update it
@HiltViewModel
class ProfileViewModel @Inject constructor(
private val repository: PlayersRepository
) :...