Details
-
Bug
-
Resolution: Cannot Reproduce
-
Not Evaluated
-
None
-
None
-
None
Description
import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: 1000 height: 580 visible: true title: "QtUi" Rectangle { id: bg color: "#2c313c" border.color: "#353b48" anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top anchors.bottom: parent.bottom anchors.rightMargin: 10 anchors.leftMargin: 10 anchors.bottomMargin: 10 anchors.topMargin: 10 Rectangle { id: appContainer color: "#00ffffff" anchors.fill: parent anchors.rightMargin: 1 anchors.leftMargin: 1 anchors.bottomMargin: 1 anchors.topMargin: 1 Rectangle { id: topBar height: 60 color: "#1c1d20" anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top anchors.rightMargin: 0 anchors.leftMargin: 0 anchors.topMargin: 0 } Rectangle { id: content color: "#00ffffff" anchors.left: parent.left anchors.right: parent.right anchors.top: topBar.bottom anchors.bottom: parent.bottom anchors.rightMargin: 0 anchors.bottomMargin: 0 anchors.leftMargin: 0 anchors.topMargin: 0 Rectangle { id: leftMenu width: 70 color: "#1c1d20" anchors.left: parent.left anchors.top: parent.top anchors.bottom: parent.bottom } } } } }
Platform
BigSur 11.6, M1
Working on Windows: