Created
April 5, 2022 09:35
-
-
Save cp-radhika-s/d251c77fd5ebc93f819c434544949f5f to your computer and use it in GitHub Desktop.
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
DragTarget(modifier = Modifier, dataToDrop = foodItem) { | |
Image( | |
painter = painterResource(id = foodItem.image), | |
contentDescription = null, | |
contentScale = ContentScale.Crop, | |
modifier = Modifier | |
.size(130.dp) | |
.clip(RoundedCornerShape(16.dp)) | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment