XamFormsExtended / Xfx.Controls

Xamarin Forms Extended Controls
MIT License
193 stars 79 forks source link

xfxEntry problem with Focus #101

Open RafaelVieira2323 opened 5 years ago

RafaelVieira2323 commented 5 years ago

Please fill out either the bug or feature request section and remove whatever section you are not using.

Bug

Affects

Expected Behavior

my entry does not lose the focus, when I press the "next" keypad.

Actual Behavior

my text field loses focus when I press the "next" keypad.

Steps to reproduce the Behavior

//Passa o focus para o campo password usernameEntry.Completed += (object sender, EventArgs e) => { usernameEntry.Unfocus(); passwordEntry.Focus(); };

        //Faz a acção do botão login
        passwordEntry.Completed += (object sender, EventArgs e) =>
        {
            CheckEntry();
        };

Link to Github Reproduction (optional but recommended)

[Repro]()

Feature Request:

Please fill in what you would like

RafaelVieira2323 commented 5 years ago

We identify this bug in this issue : https://github.com/XamFormsExtended/Xfx.Controls/issues/89

-