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