Skip to content

Instantly share code, notes, and snippets.

@AndreVero
Created February 24, 2024 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndreVero/c93529fa34c31cbef65e7d8a862b752a to your computer and use it in GitHub Desktop.
Save AndreVero/c93529fa34c31cbef65e7d8a862b752a to your computer and use it in GitHub Desktop.
GlovoAnimationComposable
data class GlovoItem(
val title: String,
val path: Path
)
@Composable
fun GoalsComponent(
modifier: Modifier = Modifier,
goals: List<Goal> = emptyList(),
mainCircleRadius: Dp = 130.dp,
innerCircleRadius: Dp = 60.dp,
textStyle: TextStyle = MaterialTheme.typography.body2,
onGoalClick: (Goal) -> Unit,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment