Are BottomSheetDialogFragment and compose view inc...
# compose
l
Are BottomSheetDialogFragment and compose view incompatible? I have a code looks like this
Copy code
// xml
<androidx.constraintlayout.widget.ConstraintLayout>
    <androidx.compose.ui.platform.ComposeView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

// compose 
setContent {
  LazyColumn(modifier = Modifier.fillMaxWidth()) {
     items(150) { Text(text = "hello $it" ) 
  }
}
However, the scrolling operation does not work well unlike the existing android ui code.
🧵 1