作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试迭代 List
对象,对于每个我想要显示可组合卡片的对象。问题是你不能从 list.forEach{}
内部调用 Composable 函数。括号。
编码:
@Composable
fun Greeting(listy : List<SomethingForLater>) {
LazyColumn {
listy.forEach {
//error here
testCard(somethingForLater = it)
}
}
}
@Composable
fun testCard(somethingForLater: SomethingForLater){
val theme = MaterialTheme
Card(shape = theme.shapes.small,backgroundColor = theme.colors.secondary){
Column {
Row {
Text(
text = somethingForLater.task,
modifier = Modifier.padding(start = 5.dp,
top = 3.dp,bottom = 3.dp
),
fontSize = 18.sp,
fontWeight = FontWeight.Bold,
)
}
}
}
}
最佳答案
有items
LazyColumn
中的参数
LazyColumn {
items(listy) { message ->
testCard(message)
}
}
或者您可以简单地更改
LazyColumn
至
Column
关于android - 撰写foreach循环:@Composable invocations can only happen from the context of a @Composable function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67961596/
我是一名优秀的程序员,十分优秀!