Nurlibay
01/10/2025, 11:07 AMLazyColumn {
    item {
        // Header content here
    }
    items(section1Items) { item ->
            // Items for section 1
    }
    item {
            // Section 2 header (if applicable)
    }
    items(section2Items) { item ->
        // Items for section 2
        Box(
            modifier = Modifier
                .fillMaxWidth()
                .padding(horizontal = 16.dp)
                .background(
                    color = Color.White,
                    shape = RoundedCornerShape(8.dp)
                )
                .border(
                    width = 1.dp,
                    color = Color.Gray,
                    shape = RoundedCornerShape(8.dp)
                )
        ) {
            LazyColumn {} Is this possible?
        }
    }
}
Is this possible?Abhishek
01/10/2025, 11:27 AMStylianos Gakis
01/10/2025, 12:31 PMArne Jans
01/13/2025, 12:27 PMLazyColumn inside of LazyColumn, anyway?
You can simply compose every content for each section2-item, I guess?