summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/Layouts/StartLayout.qml
blob: 396843844768a0267869eaab346a33865e548415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import QtQuick 2.0
import com.ford.hmiframework 1.0
import "../Widgets"

FLayout {
    id: chrome
    width: 800
    height: 480

    //property alias bg: _bg
    //property alias btnIndicatorState: button1.indicatorState
    property alias button1: button1




    BaseText{
        id: title
        anchors.centerIn: chrome
        text: "Chrome"
    }

    TouchButton{
        id: button1
        anchors.top: title.bottom
        anchors.horizontalCenter: title.horizontalCenter
        text: "Button 1"
    }

}