textarea with border qml
Rectangle {
color: "green"
anchors.fill: parent
anchors.margins: 20
TextArea {
anchors.fill: parent
anchors.margins: 1
style: TextAreaStyle {
backgroundColor : "yellow"
}
}
}