blob: e03442d0b0e607df7817279b8699052c0f8fc304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import QtQuick 2.12
import KelakonUser 0.1
CreateProfileForm {
width: stackView.width
height: stackView.height
backButton.onClicked: stackView.pop()
skipButton.onClicked: stackView.push("qrc:/pages/Home.qml")
emailAddressLabel.text: User.emailAddress
enterFullName.text: User.realName
}
|