frankelot
06/13/2021, 3:08 PMRafs
06/13/2021, 4:08 PMModifier.drawBehind
frankelot
06/13/2021, 4:17 PMdrawBehind
canvas
to repeat the image 🤔for (x in 0..this.size.width.roundToInt() step 80) {
for (y in 0..this.size.height.roundToInt() step 80) {
drawCircle(
color = Color.Black,
center = Offset(x.toFloat(), y.toFloat()),
radius = 8f,
alpha = .1f
)
}
}
Rafs
06/13/2021, 5:02 PMfrankelot
06/13/2021, 5:03 PMNader Jawad
06/15/2021, 6:47 AM