10 lines
166 B
QML
10 lines
166 B
QML
// ClockWidget.qml
|
|
import QtQuick
|
|
|
|
Text {
|
|
// we no longer need time as an input
|
|
|
|
// directly access the time property from the Time singleton
|
|
text: Time.time
|
|
}
|