Hi guys, I want to know any api which will not ass...
# compose
k
Hi guys, I want to know any api which will not assigne by default value in declaration time. For example
mutableStateOf("need value in here").
So anything we can use in compose ?
c
Compose needs a value for all its state-holders, but that value could be
null
. So something like this will work when you need a state, but don’t have the value at the time it’s created:
mutableStateOf<String?>(null)