12 lines
184 B
QML
12 lines
184 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.2
|
|
|
|
Page {
|
|
title: qsTr("Settings")
|
|
|
|
Label {
|
|
text: qsTr("You are on Settings Page")
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|