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

FocusScope {
    anchors.fill: parent
    property alias header: header.text

    Text {
      id: header
      font.pixelSize: 24
      color: "#ffffff"
      anchors.horizontalCenter: parent.horizontalCenter
      anchors.top: parent.top
      anchors.topMargin: 70
    }
}