LazyColumn(modifier = Modifier
.wrapContentHeight()
.heightIn(max = 220.dp)
) {
items(myList) { item ->
Text(text = item.name)
}
}