12 lines
181 B
QML
12 lines
181 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.0
|
|
|
|
Page {
|
|
title: qsTr("Home")
|
|
|
|
Label {
|
|
text: qsTr("You are on the home page.")
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|