Marko Novakovic
04/05/2021, 6:57 AMvar state by remember { mutableStateOf(…) } I get error saying there are no get and set methods BUT I have
import androidx.compose.runtime.getValue
import androidx.compose.runtime.setValue
and they are grey, not used. same get and set methods error when using import androidx.compose.runtime.*
Any fix?Cezar Olteanu
04/05/2021, 6:59 AMMarko Novakovic
04/05/2021, 7:15 AMFilip Wiesner
04/05/2021, 7:29 AMvar state by remember<MutableState<Boolean>> { mutableStateOf(true) }Marko Novakovic
04/05/2021, 7:33 AM