Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Software keyboard focus pushes all content when using router-outlet #867

Open
NickIliev opened this issue Jun 28, 2017 · 3 comments
Open

Comments

@NickIliev
Copy link

Steps to reproduce"

  • use this test application
  • tap "go to test page" - it will load a page with button and router-outlet. The router-outlet has ListView and TextField.
  • enter data in the TextField - at the moment the software keyboard appears it will "push" all the content instead of appearing over it. The issue is pretty consistent but sometimes it works as expected (the keyboard is appearing over the content and not pushing it) - in this case, rebuild the application and the issue will appear again.

Reported via t.1115943

@NickIliev
Copy link
Author

+1 reported via t.1116783

@NickIliev NickIliev added the bug label Jun 29, 2017
@Ericky14
Copy link

Ericky14 commented Jul 1, 2017

It's worth noting that if the page is loaded directly from app.component.ts as in adding "redirectTo: 'pageUrl...'" to the path '', this bug does not occur. In other words, it does not occur in the first page the app visits, it occurs after a transition has been made.

@NickIliev
Copy link
Author

NickIliev commented Jul 6, 2017

It seems that the issue is caused by the router-outlet not being able to set its height correctly.
Even if we change this lines to

<GridLayout rows="100, 500">
  <Button row="0" text="Go back" [nsRouterLink]="['/main', { outlets: { outlet: ['test']}}]"></Button>
  <router-outlet row="1" name="outlet"></router-outlet>
</Stacklayout>

The router-outlet won't be able to occupe 500dp. This later leeds to the issue where if the software keyboard is onviked it will push the whole content (including the button outside of router-outlet)

Updated test project can be found here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants