Skip to content

Instantly share code, notes, and snippets.

@zurche
Created August 11, 2023 09:43
Show Gist options
  • Save zurche/8039ac0661068096df08c02c0903e79f to your computer and use it in GitHub Desktop.
Save zurche/8039ac0661068096df08c02c0903e79f to your computer and use it in GitHub Desktop.
@Composable
@Preview(showBackground = true)
fun BezierTest() {
Canvas(modifier = Modifier.size(300.dp), onDraw = {
val path = Path().apply {
// Here's were we'll draw our custom shape's path
}
drawPath(path = path, color = CryptoOrange)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment