Testing with Medium
Mon Jan 24 2022 02:26:05 GMT+0000 (Coordinated Universal Time)
Saved by
@malibaig
fun NoteCard() {
Box(
contentAlignment = Alignment.Center,
modifier = Modifier
.size(300.dp)
) {
// Second Box checking comments
Box(
modifier = Modifier
.size(200.dp)
.clip(CircleShape)
.background(Color(0xFF2D74AC))
.border(width = 5.dp, color = Color(0xFFC907EB))
)
}
}
content_copyCOPY
Comments