TextArea avec Border QML

Rectangle {
    color: "green"
    anchors.fill: parent
    anchors.margins: 20

    TextArea {
        anchors.fill: parent
        anchors.margins: 1
        style: TextAreaStyle {
            backgroundColor : "yellow"
        }

    }
}
Depressed Donkey