Hello, Is it possible to use constraint bias with ...
# compose
g
Hello, Is it possible to use constraint bias with jetpack compose? Let’s assume this scenario:
Copy code
Box(modifier = Modifier.fillMaxWidth().constrainAs(title) {
    top.linkTo(<http://parent.top|parent.top>)
    bottom.linkTo(parent.bottom, margin = delta)
}) {...}
I could compute that delta regarding screenHeight, but it would be better if I could use % like we use in xml