Android Studio – How I can pass 2 lists in items (LazyColumn)
I have LazyColumn and I want to pass 2 lists in items, how I can do it I want to do something like that if it is possible LazyColumn( modifier = Modifier.fillMaxHeight(0.85f) ) { items(cartItems,products) { cartItems,product -> CardProduct2(cartItems, product)…