Add sample qml application
[staging/HomeScreen.git] / sample-qml / imports / components / Button.qml
1 /* Copyright (C) 2015, Jaguar Land Rover. All Rights Reserved.
2  *
3  * This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7 import QtQuick 2.0
8
9 Rectangle {
10     id: root
11     border.color: "#cccccc"
12     color:"#222"
13     border.width: 2
14     height: pairText.height + 20
15     width: pairText.width + 20
16
17     property string buttonText
18
19
20     Text {
21         id: pairText
22         anchors.centerIn: parent
23         font.family: "Source Sans Pro"
24         font.pixelSize: 48
25         font.weight: Font.Bold
26         color: "white"
27         font.capitalization: Font.AllUppercase
28         text: buttonText
29     }
30 }