android: jetpack compose lazycolumn

时间:2021-03-17 17:20:20

标签: android kotlin android-jetpack-compose

如何从下面显示lazycolumn? 默认情况下,它会显示上面的列表

   LazyColumn(){
        itemsIndexed(items = chat){ index, chat ->
            Column(modifier = Modifier.padding(top = 1.dp, start = 6.dp, bottom = 1.dp, end = 6.dp)) 
             {
                if(chat.sender.equals(MyId)){
                    ItemRigth(chat)
                }
                else{
                    ItemLeft(chat)
                }
            }
        }
    }

2 个答案:

答案 0 :(得分:2)

如果您将 reverseLayout 参数设置为 true,项目将从底部显示。

LazyColumn(
    reverseLayout= true, // << here
    modifier = Modifier.fillMaxSize()
) { .. }

答案 1 :(得分:0)