Created
April 12, 2025 07:33
-
-
Save JyotimoyKashyap/89c8d63a7979ce1f03a295996fa98d1f to your computer and use it in GitHub Desktop.
Icon Item
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
| @Composable | |
| fun IconItemView(iconItem: IconItem, onIconSelected: (String, ImageVector) -> Unit) { | |
| Column( | |
| modifier = Modifier | |
| .padding(MaterialTheme.spacing.small) | |
| .wrapContentSize() | |
| ) { | |
| iconItem.image?.let { | |
| Icon( | |
| imageVector = it, | |
| contentDescription = iconItem.id, | |
| modifier = Modifier | |
| .clickable { | |
| onIconSelected(iconItem.id, it) | |
| } | |
| ) | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment