Browse Source

Fix a bug that the checkbox doesn't toggle in "Code Sample using effects" in tutorials/Web/Using_Effects/README.md (#2014)

pull/2072/head
Shreck Ye 3 years ago committed by GitHub
parent
commit
cea96d4b56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tutorials/Web/Using_Effects/README.md

2
tutorials/Web/Using_Effects/README.md

@ -167,7 +167,7 @@ fun main() {
Text("Show/hide text rendered by 3rd party library")
}
CheckboxInput(checked = false) {
CheckboxInput(checked = showUncontrolledElements) {
id("checkbox")
onInput {
showUncontrolledElements = it.value

Loading…
Cancel
Save