import QtQuick 2.5 import QtQuick.Layouts 1.2 import QtQuick.Controls 1.3 Rectangle { width: 360 height: 360 RowLayout { id: rowLayout1 anchors.fill: parent TextField { id: textField1 anchors.bottom: groupBox1.top anchors.bottomMargin: 8 anchors.right: parent.right anchors.rightMargin: 8 anchors.left: parent.left anchors.leftMargin: 8 anchors.top: parent.top anchors.topMargin: 8 placeholderText: qsTr("Search filter") } GroupBox { id: groupBox1 anchors.top: textField1.bottom anchors.topMargin: 8 anchors.left: parent.left anchors.leftMargin: 8 anchors.right: parent.right anchors.rightMargin: 8 title: qsTr("Tables") } } }