提问人:Lobio 提问时间:11/17/2023 更新时间:11/17/2023 访问量:30
如何使 LazyColumn 的高度取决于其内容?
How to make the height of a LazyColumn depend on its content?
问:
我需要 LazyColumn 的高度取决于其内容。
我尝试了权重,但在这种情况下,LazyColumn 不可见(屏幕截图)。
LazyColumn(
modifier = Modifier
.fillMaxWidth()
.weight(1f)
如果我定义高度,它是固定的(screenshot-2),但我需要根据内容扩展它。
LazyColumn(
modifier = Modifier
.fillMaxWidth()
.height(400.dp)
如何解决?
答: 暂无答案
评论
weight
height