Files
AndroidJetpack/Jetpack-Compose-Playground/docs/material/switch.md
T
2026-07-15 16:57:36 +08:00

26 lines
589 B
Markdown

<!---
This is the API of version 1.2.0
-->
# Switch
<p align="left">
<img src ="{{ site.images }}/material/switch/SwitchDemo.png" height=100 width=300 />
</p>
```kotlin
@Composable
fun SwitchDemo() {
val checkedState = remember { mutableStateOf(true) }
Switch(
checked = checkedState.value,
onCheckedChange = { checkedState.value = it }
)
}
```
## See also:
* [Official Docs](https://developer.android.com/reference/kotlin/androidx/compose/material/package-summary#switch)
* [Full Example Code]({{ site.samplefolder }}/material/switch/SwitchDemo.kt)