diff options
Diffstat (limited to 'features')
| -rw-r--r-- | features/ProfileForm.ui.qml | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/features/ProfileForm.ui.qml b/features/ProfileForm.ui.qml new file mode 100644 index 0000000..45c06cd --- /dev/null +++ b/features/ProfileForm.ui.qml @@ -0,0 +1,20 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Controls.Material 2.12 +import QtQuick.Layouts 1.12 + +Page { +    id: page +    Label { +        text: qsTr("This is profile page") +        anchors.horizontalCenter: parent.horizontalCenter +        anchors.verticalCenter: parent.verticalCenter +    } +} + +/*##^## +Designer { +    D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ + |