1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| @Composable fun ShapeDemo() { Column( Modifier .fillMaxWidth() ) { ExampleBox(shape = RectangleShape) ExampleBox(shape = CircleShape) ExampleBox(shape = RoundedCornerShape(10.dp)) ExampleBox(shape = CutCornerShape(10.dp)) } }
@Composable fun ExampleBox(shape: Shape) { Column( Modifier .fillMaxWidth() .padding(10.dp) .wrapContentSize(Alignment.Center) ) { Box( modifier = Modifier .size(100.dp) .clip(shape) .background(Color.Blue) ) } }
|