我有一个可组合的父母
Row(
modifier = modifier
.width(tableWidth)
.fillMaxHeight(),
) {
cells.forEachIndexed { it1, cell ->
Column(
modifier = Modifier
.height(tableHeight),
) {
for (i in cell.indices) {
Box(
modifier = Modifier
.width(sideBarWidth)
.height(headerHeight)
.clickable {
//event here
}
) {
eventContent(
studentScore = cell,
listIndex = it1,
index = i,
onEvent = onEvent // event here
)
}
}
}
}
}
和一个child,后者是如上所示可组合的eventContent。
我希望父级或子级可组合触发这两个单击事件。如何实现?
1条答案
按热度按时间0x6upsns1#
您可以简单地创建一个
lambda
回调函数,在其中可以将所需的所有内容设置为它的参数。您可以简单地从调用位置执行单独的操作