import QtQuick 2.0 import QtQuick.Controls 1.0 import QtQuick.Layouts 1.0 Rectangle { width: 400 height: 400 SplitView { id: layoutBlock anchors.fill: parent orientation: Qt.Horizontal Rectangle { implicitWidth: 100 Layout.fillHeight: true color: "red" } SplitView { id: v Layout.fillWidth: true Layout.fillHeight: true orientation: Qt.Vertical Rectangle { Layout.fillWidth: true Layout.fillHeight: true color: "yellow" } Rectangle { implicitHeight: 125 Layout.minimumHeight: 100 Layout.maximumHeight: v.height / 2 Layout.fillWidth: true color: "green" Text { anchors.centerIn: parent renderType: Text.NativeRendering text: "This item smaller, than it should be" } } } } }