Slide 6
Slide 6 text
Compose for Wear OS ࣮ྫ(͋ͱͰվળ͍͖ͯ͠·͢)
@Composable
fun ContactsScreenV1() {
LazyColumn {
item {
ListHeader {
Text(text = "Contacts")
}
}
items(20) {
Chip(
icon = {
Icon(
Icons.Rounded.Face,
contentDescription = "Contacts",
)
},
label = { Text("HogeHoge Tarou $it") },
colors = ChipDefaults.primaryChipColors(),
onClick = { },
)
}
}
}