Jaewoong Eum
Jaewoong Eum
Hey @snachmsm, I'm not sure if it's a problem with the `SurfaceViewRenderer`. How about using [VideoTextureRenderer](https://github.com/GetStream/webrtc-android#videotextureviewrenderer)?
Hey @MahabubKarim, which Android Studio do you use? You should use Android Studio Iguana at least to build this project.
Hey @26feb97shubham, have you ever checked out this article before? https://medium.com/proandroiddev/shared-element-transition-in-jetpack-compose-provide-enriched-user-experiences-163d4e435869
Hey @KwonDae, I believe you'll be able to resolve this issue by wrapping your `GlideImage` with a `Box` Composable, as demonstrated in the code below: ```kotlin Box(modifier = Modifier.size(56.dp)) {...
Hi @KwonDae, you actually don't need to use `FlowRow` if you want to maintain the same width for each item as half the size. Instead, you can utilize `LazyVerticalGrid`. ```kotlin...
Hey @KwonDae, Landscapist uses [SizeResolver](https://github.com/skydoves/landscapist/blob/main/coil/src/main/kotlin/com/skydoves/landscapist/coil/ConstraintsSizeResolver.kt) to request pre-computed image sizes before rendering. The reason for adopting [BoxWithConstraints](https://developer.android.com/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope) is to limit content sizes and support match-parent functionality. This is achieved by...
Hey guys, would you provide a video for this behavior? Thank you!
Hey everyone, thanks for checking out this issue. I just confirmed that it occurs when using `LazyColumn` or any scrollable component inside the flexible bottom sheet. Fixing this bug is...
Hey guys, 0.1.4 has been released, and I hope this new release resolves this issue.
Hey @Kev1000000, do you have any screenshots? and I'm wondering if it happens on dragging or snapping (flinging) behavior?