14 lines
182 B
QML
14 lines
182 B
QML
|
|
import QtQuick
|
||
|
|
import QtQuick.Controls
|
||
|
|
import QtQuick.Layouts
|
||
|
|
|
||
|
|
NavigationPage {
|
||
|
|
title: qsTr("Password")
|
||
|
|
|
||
|
|
Text {
|
||
|
|
text: "TODO"
|
||
|
|
|
||
|
|
Layout.fillHeight: true
|
||
|
|
}
|
||
|
|
}
|