In my code I call a composable function:
ShowSomeComposable(
modifier = Modifier,
isActive = mutableStateOf(true),
)
and I can compile this and run locally. But the Lint check on my CI system complains:
myFile.kt:147: Error: Creating a state object during composition without using remember [UnrememberedMutableState from androidx.compose.runtime] isActive = mutableStateOf(true),
So how can I replace?