I see the native control should not be visible when MobileInputField is disabled:
MobileInputField.cs (link)
void OnDisable() {
if (_isMobileInputCreated) {
SetFocus(false);
SetVisible(false);
}
}
But after that runs the native control is still visible in my app.
Any ideas? Thanks!
I see the native control should not be visible when MobileInputField is disabled:
MobileInputField.cs (link)
But after that runs the native control is still visible in my app.
Any ideas? Thanks!