10 lines
199 B
QML
10 lines
199 B
QML
import QtQuick 2.0
|
|
|
|
Text {
|
|
id: time
|
|
anchors.top: parent.top
|
|
font.pointSize: 48
|
|
font.family: "Helvetica"
|
|
color: "#ffffff"
|
|
//anchors.horizontalCenter: parent.horizontalCenter
|
|
}
|