hey Guys is this efficient: ```LazyColumn( ...
# android
a
hey Guys is this efficient:
Copy code
LazyColumn(
                verticalArrangement = Arrangement.spacedBy(20.dp),
            ){
                itemsIndexed(
                    items = quotes
                ) { index, quote ->
                    for ((key, value) in quote.ItemPair.entries) {
                        println("${key}=$value")
                        SwapiListButton(
                            buttonText = key.toString(),
                            onClick = onClick,
                        )
                    }

                }
        }