blob: 29f49023a8d0c0101d3ee098bb373aaa59bb6f7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import QtQuick 2.12
import QtQuick.Layouts 1.12
import QtQuick.Controls 2.12
import QtQuick.Controls.Material 2.12
Page {
id: page
title: qsTr("Login")
Text {
id: pageTitle
text: stackView.currentItem.title
anchors.bottom: parent.bottom
anchors.bottomMargin: 16
anchors.left: parent.left
anchors.leftMargin: 16
font.pixelSize: 20
font.family: "Work Sans"
font.weight: Font.Medium
}
}
/*##^##
Designer {
D{i:0;autoSize:true;height:480;width:640}
}
##^##*/
|