summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Layouts/TitledLayout.qml
blob: 2ef47fa101ffd90b25b4f28f8b4f33e48c08747e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0
import "../Components"

EmptyLayout {
    property alias title: title.text
    anchors.topMargin: 120

    H1 {
        id: title
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.bottom: parent.top
        anchors.bottomMargin: 10
    }
}