1 2 3 4 5 6 7 8 9 10 11 12 13
import QtQuick 2.12 import QtQuick.Controls 2.12 Page { id: page property alias contentLabel: contentLabel Label { id: contentLabel anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.bottom } }