Hi guys not sure if this in the right place but I ...
# android-studio
a
Hi guys not sure if this in the right place but I noticed something odd when trying to write the following code
val isExpanded by remember { mutableStateOf(false) }
When I try to write the above, the ide doesn't auto import all of the necessary things require to make the delegation work and it shows me an error. However, if I copy the same kind of code from let's say a compose example, then the ide auto imports the right files needed. Is this a known bug? I am running arctic fox beta 2
s
It's known issue. Add import androidx.compose.runtime.getValue manually.
👍 1