import QtQuick 2.0 import Ubuntu.Components 0.1 Column { height: 400 width: 400 spacing: 10 TextArea { id: t1 anchors.left: parent.left anchors.right: parent.right height: 80 } Button { height: 80 anchors.left: parent.left anchors.right: parent.right color: "red" onClicked: t1.focus = true } Button { height: 80 anchors.left: parent.left anchors.right: parent.right color: "green" onClicked: t2.focus = true } TextArea { id: t2 anchors.left: parent.left anchors.right: parent.right height: 80 } }