androidandroid-jetpack-composeandroid-jetpack-compose-lazy-column

LazyColum and component with infinity maximum height


I'm trying to integrate a Compose view inside an existing XML layout.

This is the structure of the XML with the Composable inside:

<androidx.constraintlayout.widget.ConstraintLayout>
   <androidx.core.widget.NestedScrollView>
      <androidx.constraintlayout.widget.ConstraintLayout>

        <androidx.compose.ui.platform.ComposeView/>

      </androidx.constraintlayout.widget.ConstraintLayout>
   </androidx.core.widget.NestedScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>

At runtime I'm getting this error

java.lang.IllegalStateException: Vertically scrollable component was measured with an infinity maximum height constraints, which is disallowed. One of the common reasons is nesting layouts like LazyColumn and Column(Modifier.verticalScroll()). If you want to add a header before the list of items please add a header as a separate item() before the main items() inside the LazyColumn scope. There are could be other reasons for this to happen: your ComposeView was added into a LinearLayout with some weight, you applied Modifier.wrapContentSize(unbounded = true) or wrote a custom layout. Please try to remove the source of infinite constraints in the hierarchy above the scrolling container.

Any idea about what could be the issue?


Solution

  • You should not use nesting components that can be scrolled in the same direction.

    Lazy layouts in Compose