Last active
December 15, 2023 03:39
-
-
Save bmc08gt/f016825c070b3a166288c38cd698f5cb to your computer and use it in GitHub Desktop.
Jetpack Compose Chips
This file contains 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
package com.planoly.ui.compose.components | |
import androidx.compose.foundation.clickable | |
import androidx.compose.foundation.layout.Row | |
import androidx.compose.foundation.layout.padding | |
import androidx.compose.material.Icon | |
import androidx.compose.material.IconButton | |
import androidx.compose.material.MaterialTheme | |
import androidx.compose.material.Surface | |
import androidx.compose.material.Text | |
import androidx.compose.material.icons.Icons | |
import androidx.compose.material.icons.filled.Check | |
import androidx.compose.material.icons.filled.HighlightOff | |
import androidx.compose.material.icons.filled.Remove | |
import androidx.compose.material.icons.filled.RemoveCircle | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.Alignment | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.graphics.Color | |
import androidx.compose.ui.graphics.vector.ImageVector | |
import androidx.compose.ui.unit.dp | |
import com.planoly.ui.compose.PGGray300 | |
@Composable | |
fun Chip( | |
startIcon: () -> ImageVector? = { null }, | |
isStartIconEnabled: Boolean = false, | |
startIconTint: Color = Color.Unspecified, | |
onStartIconClicked: () -> Unit = { }, | |
endIcon: () -> ImageVector? = { null }, | |
isEndIconEnabled: Boolean = false, | |
endIconTint: Color = Color.Unspecified, | |
onEndIconClicked: () -> Unit = { }, | |
color: Color = PGGray300, // MaterialTheme.colors.surface, | |
contentDescription: String, | |
label: String, | |
isClickable: Boolean = false, | |
onClick: () -> Unit = { } | |
) { | |
Surface( | |
modifier = Modifier.clickable( | |
enabled = isClickable, | |
onClick = { onClick() } | |
), | |
elevation = 8.dp, | |
shape = MaterialTheme.shapes.small, | |
color = color | |
) { | |
Row(verticalAlignment = Alignment.CenterVertically) { | |
val leader = startIcon() | |
val trailer = endIcon() | |
if (leader != null) { | |
Icon( | |
leader, | |
contentDescription = contentDescription, | |
tint = startIconTint, | |
modifier = Modifier | |
.clickable(enabled = isStartIconEnabled, onClick = onStartIconClicked) | |
.padding(horizontal = 4.dp) | |
) | |
} | |
Text( | |
label, | |
modifier = Modifier.padding(8.dp), | |
style = MaterialTheme.typography.button.copy(color = Color.Black) | |
) | |
if (trailer != null) { | |
Icon( | |
trailer, | |
contentDescription = contentDescription, | |
tint = endIconTint, | |
modifier = Modifier | |
.clickable(enabled = isEndIconEnabled, onClick = onEndIconClicked) | |
.padding(horizontal = 4.dp) | |
) | |
} | |
} | |
} | |
} | |
@Composable | |
fun SelectableChip( | |
label: String, | |
contentDescription: String, | |
selected: Boolean, | |
onClick: (nowSelected: Boolean) -> Unit | |
) { | |
Chip( | |
startIcon = { if (selected) Icons.Default.Check else null }, | |
startIconTint = Color.Black.copy(alpha = 0.5f), | |
contentDescription = contentDescription, | |
label = label, | |
isClickable = true, | |
onClick = { onClick(!selected) } | |
) | |
} | |
@Composable | |
fun RemovableChip( | |
label: String, | |
contentDescription: String, | |
onRemove: () -> Unit | |
) { | |
Chip( | |
endIcon = { Icons.Default.HighlightOff }, | |
endIconTint = Color.Black.copy(alpha = 0.5f), | |
contentDescription = contentDescription, | |
label = label, | |
onEndIconClicked = { onRemove() } | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment