Hi,
i have this code:
AppButton {
anchors.top: contentRegistration.bottom
anchors.right: contentRegistration.right
anchors.topMargin: dp(10)
text: qsTr("Save")
enabled: (txtName.text.length > 0 && txtLastName.text.length > 0 && txtStreet.text.length > 0 &&
txtCity.text.length > 0 && txtPhone.text.length > 0)
onClicked: {
}
}
Where the textXXXX are AppTextField, i have a strange behaviour on some Android device the button is correct enabled when all the textfield are filled, instead on some device the button is no enabled, i see that the button is enabled while changing the focus on the text field for 1 second but return soon disabled.
Any idea to resolve?