An open API service indexing awesome lists of open source software.

https://github.com/jarroyoesp/visibilitymaterial3


https://github.com/jarroyoesp/visibilitymaterial3

Last synced: 29 days ago
JSON representation

Awesome Lists containing this project

README

        

# VisibilityMaterial3

Sample project to show how 'Visibility.Gone' looks like in a ConstraintLayout:

```
Checkbox(
checked = false,
onCheckedChange = { },
modifier = Modifier
.constrainAs(selectorRef) {
top.linkTo(parent.top)
start.linkTo(parent.start)
bottom.linkTo(parent.bottom)
visibility = Visibility.Gone
}
)
```

# Updated June 8th 2023

After update dependencies(`androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha09`), the issue is fixed.
More info here: https://issuetracker.google.com/issues/251721175