I have a component hierarchy like the following. ...
# compose
r
I have a component hierarchy like the following.
Copy code
Row(){
    BoxWithConstraints() {
        Canvas(){
            drawCircle()
        }
        Image()
    }
    Text()
}
I want to make the BoxWithConstraints() height is equal to the Text() height. But As I see IntrinsicSize doesn't work with BoxWithConstraints or Lazy List. So is there any workarounds?