Skip to content

Instantly share code, notes, and snippets.

@AungThiha
Created September 15, 2023 17:51
Show Gist options
  • Select an option

  • Save AungThiha/78119497d33e1a3742668e0be5c7d76e to your computer and use it in GitHub Desktop.

Select an option

Save AungThiha/78119497d33e1a3742668e0be5c7d76e to your computer and use it in GitHub Desktop.
Used in article "Jetpack Compose Anchored Draggable Item in MotionLayout"
...
Box(
modifier = Modifier
.anchoredDraggable(anchoredDraggableState, Orientation.Vertical)
.shadow(elevation = 4.dp, shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp))
.background(
Color.White,
shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp)
)
.layoutId("contentBg")
)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment