blob: 4d783baeaa6cd3242f5543a582e0d5c5a99198c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Controls.Material 2.12
import QtQuick.Layouts 1.12
LoginEmailForm {
anchors.fill: parent
emailTextField.onTextChanged: {
if (!emailTextField.text || !continueButton.enabled)
continueButton.enabled = !continueButton.enabled
}
}
/*##^##
Designer {
D{i:0;autoSize:true;height:480;width:640}
}
##^##*/
|