Created
September 15, 2023 17:51
-
-
Save AungThiha/78119497d33e1a3742668e0be5c7d76e to your computer and use it in GitHub Desktop.
Used in article "Jetpack Compose Anchored Draggable Item in MotionLayout"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| 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