Jonas Frid
LazyColumn(modifier = Modifier .fillMaxWidth() .wrapContentHeight() .clip(RoundedCornerShape(OneAppTheme.cornerRadius.listItemRadius.dp)) .background(OneAppTheme.colors.listItemColor.toColor()) ) { items(countries) { Text(it.name) } }
martinsumera
LazyColumn { items(countries) { country -> Box(modifier = Modifier.whatever()) { Text(country.name) } } }
cb
Surface { Column { ... } }
A modern programming language that makes developers happier.