You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val `Checkbox` by story {
val checked by parameter(false)
Checkbox(checked = checked, onCheckedChange = {
checked = it // not possible because property delegate doesn't have setValue method
})
}
One of the solutions might just be to accept a mutableState which would be used both in Story/Composable code and in modifiable Story parameters.
The text was updated successfully, but these errors were encountered:
For example:
One of the solutions might just be to accept a mutableState which would be used both in Story/Composable code and in modifiable Story parameters.
The text was updated successfully, but these errors were encountered: