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

Unable to iterate through Keys of an Object when swipping #423

Open
Andy-FRAMD opened this issue Mar 7, 2020 · 1 comment
Open

Unable to iterate through Keys of an Object when swipping #423

Andy-FRAMD opened this issue Mar 7, 2020 · 1 comment

Comments

@Andy-FRAMD
Copy link

Andy-FRAMD commented Mar 7, 2020

Ii8
gif_20200307_103044
App is loading correct number of tabs. I am able to navigate to different content by clicking on the super-tab-button. However when swipping the super tab is not snapping to the next tab its just bouncing back to the first tab

To Reproduce

  1. Load a page with more than 1 tab
  2. Try swiping right
  3. Content keeps rubberband action back to the first tab

Expected behavior
Swipping should snap the new content inside the new tab container

Screenshots
If applicable, add screenshots to help explain your problem.

https://vimeo.com/396089544

Desktop (please complete the following information):

  • ionic 4
  • Angular 8
  • Chrome

Smartphone (please complete the following information):

  • Android 9+

Additional context
Changing orientation of phone (portrait to landscape) swiping fixes itself.

Version 6.3.0

@Andy-FRAMD
Copy link
Author

Andy-FRAMD commented Mar 8, 2020

The root of the issue could be the <super-tab>, iterating through keys of an object

<super-tabs id="wallet-tab">
  <super-tabs-toolbar slot="top">
    <super-tab-button class="super-tab-button" *ngFor="let k of Addresses | keyvalue">
      <ion-label class="super-tab-label">{{k.value.Nickname ? k.value.Nickname : 'Main'}}</ion-label>    
    </super-tab-button>
  </super-tabs-toolbar>
  <super-tabs-container class="dark-header">
    <super-tab *ngFor="let k of Addresses | keyvalue">
        <ion-content class="bg-class">
        <app-wallet [addresssetting]="k.value"></app-wallet>
      </ion-content>
    </super-tab>
  </super-tabs-container>
</super-tabs>

I am wondering if there is a bug with the *ngFor iteration specifically through keys of an object like the above example

@Andy-FRAMD Andy-FRAMD changed the title Swipping rubberband behaviour Unable to iterate through Keys of an Object when swipping Mar 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant