diff --git a/examples/demos/calqlatr/Main.qml b/examples/demos/calqlatr/Main.qml index aa4f4f7ff..e9a0db9bf 100644 --- a/examples/demos/calqlatr/Main.qml +++ b/examples/demos/calqlatr/Main.qml @@ -19,6 +19,11 @@ Window { id: root anchors.fill: parent + anchors.topMargin: parent.SafeArea.margins.top + anchors.leftMargin: parent.SafeArea.margins.left + anchors.rightMargin: parent.SafeArea.margins.right + anchors.bottomMargin: parent.SafeArea.margins.bottom + readonly property int margin: 18 readonly property color backgroundColor: "#222222" readonly property int minLandscapeModeWidth: numberPad.landscapeModeWidth diff --git a/examples/demos/coffee/Main.qml b/examples/demos/coffee/Main.qml index 61a116ac0..931c0679e 100644 --- a/examples/demos/coffee/Main.qml +++ b/examples/demos/coffee/Main.qml @@ -8,6 +8,11 @@ ApplicationWindow { width: 1000 height: 600 title: qsTr("Coffee") + + background: Rectangle { + color: Colors.currentTheme.background + } + //! [Set application window size] ApplicationFlow { width: parent.width