Код: Выделить всё
val a = @Composable { data: String -> Text("Team B: $data") }
Код: Выделить всё
@Composable
fun TeamBView(data: String) {
Text("Team B: $data")
}
// this will error out stating
// "Function References of @Composable functions are not currently supported"
val a = ::TeamBView
Подробнее здесь: https://stackoverflow.com/questions/791 ... e-function