bryankeltonadams
10/13/2025, 8:53 PMbryankeltonadams
10/13/2025, 8:55 PMKirill Grouchnikov
10/13/2025, 9:10 PMCard ? Are you looking for continued visuals of a card container that wraps multiple rows? If you don't need the shadows, you can emulate the card container visuals by applying top-middle-bottom painters to individual rows.bryankeltonadams
10/13/2025, 9:12 PMKirill Grouchnikov
10/13/2025, 9:13 PMbryankeltonadams
10/13/2025, 9:14 PMbryankeltonadams
10/13/2025, 9:16 PMCard(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = 10.dp, vertical = 1.dp),
elevation = 15.dp,
) {
LazyColumn {
items(50) {
Text("test")
}
}
}
So basically just need that but inside of a LazyColumn but then still have the benefit of the review items being inside of a LazyColumn rather than as a single item {
Card() {
items.forEach{
}
}Kirill Grouchnikov
10/13/2025, 9:18 PMbryankeltonadams
10/13/2025, 9:20 PMbryankeltonadams
10/13/2025, 10:40 PMKirill Grouchnikov
10/13/2025, 10:59 PMbryankeltonadams
10/13/2025, 11:01 PMbryankeltonadams
10/13/2025, 11:01 PMKirill Grouchnikov
10/13/2025, 11:08 PMbryankeltonadams
10/13/2025, 11:30 PM