aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/qml/Home.qml
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreen/qml/Home.qml')
-rw-r--r--HomeScreen/qml/Home.qml25
1 files changed, 23 insertions, 2 deletions
diff --git a/HomeScreen/qml/Home.qml b/HomeScreen/qml/Home.qml
index 423c24c..6657d40 100644
--- a/HomeScreen/qml/Home.qml
+++ b/HomeScreen/qml/Home.qml
@@ -41,8 +41,20 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
anchors.topMargin: 20
- source: './images/B14-90.png'
+ source: './images/sign.png'
visible: false
+ Label {
+ id: speedLimit
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.verticalCenter: parent.verticalCenter
+ horizontalAlignment: Text.AlignHCenter
+ color: "black"
+ text: "50"
+ font.pixelSize: 90
+ font.family: "Roboto"
+ font.bold: true
+ visible: false
+ }
}
Image {
id: flagLanguage
@@ -119,8 +131,17 @@ Item {
animation2.running = true;
}
- function showSign90(show) {
+ function showSign90(show, speed, unit) {
sign90.visible = show
+ if(show) {
+ if(speed.length > 2)
+ speedLimit.font.pixelSize = 60
+ else
+ speedLimit.font.pixelSize = 90
+ speedLimit.text = speed
+ }
+ sign90.source = './images/B14-90.png'
+ speedLimit.visible = false
}
function showVisa(show, num) {