going to read this ^ now, but this is what I was t...
# compose
j
going to read this ^ now, but this is what I was thinking of:
Copy code
class Composable

fun Column(columnReceiver: (Composable.() -> Unit)) {
    Composable().columnReceiver()
}

fun Composable.Text() {

}

fun sample() {
    Column {
        Column {
            Text()
        }
    }

    Column {
        val outerColumn = this
        Column {
            outerColumn.Text()
        }
    }
}