Spikey Sanju
03/23/2021, 6:53 PMTash
03/23/2021, 6:56 PMval gradientBrush = Brush.sweepGradient(listOf(lightColor, darkColor))
Tash
03/23/2021, 6:56 PMdrawArc(
brush = gradientBrush,
startAngle = ...,
sweepAngle = ...,
useCenter = ...,
style = ...
)
Tash
03/23/2021, 6:59 PMcolorStops
val gradientBrush = Brush.sweepGradient(
0.0f to Color...,
0.3f to Color....,
1.0f to Color....,
center = Offset(0.0f, 100.0f)
)
Spikey Sanju
03/23/2021, 7:03 PM