Skip to content

Instantly share code, notes, and snippets.

@nadewad
Created November 15, 2020 14:50
Show Gist options
  • Save nadewad/59f05af4219bffd528e10377290eb26f to your computer and use it in GitHub Desktop.
Save nadewad/59f05af4219bffd528e10377290eb26f to your computer and use it in GitHub Desktop.
Canvas(modifier = Modifier.fillMaxSize()) {
drawCircle(
brush = RadialGradient(
0.0f to Color.White,
0.5f to Color.White,
1.0f to Color.Black,
centerX = center.x,
centerY = center.y,
radius = size.width / 2
)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment