Hey,
I'm working on a small Android (Crossplatform) App for a school project.
In the App I have a Login Screen (Email and Password).
When I typed in my Email and I click next, I would like to Focus on the Password Entry without closing the Keyboard.
I use this Code for Focus the Password Entry.
tbx_Email.Completed += (s, e) => tbx_Password.Focus();
Is this possible without a custom Renderer?
Thanks for your help