Home > Blockchain >  How to draw this easily on compose?
How to draw this easily on compose?

Time:12-02

if anyone can tell me how to draw this shape Sample using Canvas

CodePudding user response:

Easiest way you can do it is Modifier.border(2.dp, RoundedCornerShape(50)) on your Text(modifier = Modifier.border(2.dp, RoundedCornerShape(50)))

  • Related