Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 9, 2024 00:26
Show Gist options
  • Save skydoves/8eaf50d8dcc3306c27ae1d78402d4cc4 to your computer and use it in GitHub Desktop.
Save skydoves/8eaf50d8dcc3306c27ae1d78402d4cc4 to your computer and use it in GitHub Desktop.
state_hoisting
@Composable
fun Parent() {
var sliderValue by remember { mutableStateOf(0f) }
SliderComponent(
value = sliderValue,
onValueChange = { sliderValue = it }
)
}
@Composable
fun SliderComponent(value: Float, onValueChange: (Float) -> Unit) {
Slider(value = value, onValueChange = onValueChange)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment