Skip to content
Snippets Groups Projects
Header.qml 674 B
import QtQuick
import QtQuick.Controls

Item {
    id: header
    height: qtIcon.height + 24

    Label {
        text: "Let's build Qt!"
        anchors.left: parent.left
        anchors.verticalCenter: parent.verticalCenter
        anchors.leftMargin: 12
    }

    Image {
        id: qtIcon
        source: "qrc:/icons/qt_logo_green_64x64px.png"
        anchors.right: parent.right
        anchors.verticalCenter: parent.verticalCenter
        anchors.rightMargin: 12
    }

    Rectangle {
        id: divider
        anchors.bottom: parent.bottom
        anchors.left: parent.left
        anchors.right: parent.right
        color: "#f3f3f4"
        height: 1
    }
}