How do I add a border to an Anko editText using a drawable.
This post How to put a border in an EditText? explains how to do with an XML layout
In an Anko DSL what do you add to this code fragment:
editText() {
hint = "Enter message"
lines = 4
maxLines = 4
singleLine = false
background="@drawable/file" // this is not right
}