I'm trying to create a DSL construct like the edit...
# anko
t
I'm trying to create a DSL construct like the editText seen at the end of the Basics section here https://github.com/Kotlin/anko#basics, but I'm getting an error. Here is my code:
Copy code
val text: TextView = with(ctx) {
            textView {

            }
        }