aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/wearable/qml/Navigation/RouteElement.qml
blob: dd4aebbb2f3aa4bb1bc9357a9364d7307af9a551 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import "../Style"

Rectangle {
    color: UIStyle.themeColorQtGray8

    Row {
        spacing: 5
        width: parent.width - 80
        anchors.centerIn: parent

        Image {
            id: img
            anchors.verticalCenter: parent.verticalCenter
            source: navImage
            fillMode: Image.PreserveAspectFit
        }

        Column {
            spacing: 5
            width: parent.width - img.width
            anchors.verticalCenter: parent.verticalCenter

            Text {
                width: parent.width
                wrapMode: Text.WordWrap
                text: navInstruction
                font.pixelSize: UIStyle.fontSizeS
                verticalAlignment: Text.AlignVCenter
                padding: 1
                color: UIStyle.themeColorQtGray1
            }

            Text {
                width: parent.width
                wrapMode: Text.WordWrap
                text: navAuxInfo
                font.pixelSize: UIStyle.fontSizeXS
                verticalAlignment: Text.AlignVCenter
                padding: 1
                color: UIStyle.themeColorQtGray2
            }
        }
    }
}