我想知道如何通过jetpack compose中的lambda函数返回Column/Row
。我尝试了一些方法,但它给了我错误。
配对内容
@Composable
fun PairContent(
bluetoothEnable: (ColumnScope) -> Unit,
) {
AnimatedVisibility(visible = true) {
Scaffold {
Column { columnScope ->
bluetoothEnable(columnScope)
}
}
}
}
错误
Type mismatch.
Required:
ColumnScope.() → Unit
Found:
ColumnScope.(Any?) → Unit
Cannot infer a type for this parameter. Please specify it explicitly.
图像中有错误
1条答案
按热度按时间zi8p0yeb1#
ColumnScope应该是参数
bluetoothEnable: ColumnScope.() -> Unit
的接收者