ionic-team / ionic-framework

A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.
https://ionicframework.com
MIT License
50.93k stars 13.52k forks source link

bug: Sliders getting stuck when manipulating data inside on it. #21480

Closed nazrulcse closed 4 years ago

nazrulcse commented 4 years ago

Bug Report

Ionic version:

[x] 5.1.1

Current behavior:

Sliders getting stuck during swipe left/right when manipulating huge amount of real time data inside slide container.
Expected behavior:

It should smoothly swipe left/right Steps to reproduce:

Simple sliders with huge amount to real time data manipulation and try to swipe left/right Related code:

<ion-content>
  <ion-slides *ngIf="didInit" class="main-app-slider" [options]="slideOpts" #tabSlider>
    <ion-slide>
      <app-home></app-home>
    </ion-slide>
    <ion-slide>
      <app-chat-rooms></app-chat-rooms>
    </ion-slide>
    <ion-slide *ngFor="let room of chat_rooms">
      <app-chat-room [room_id]="room.id"></app-chat-room>
    </ion-slide>
  </ion-slides>
</ion-content>

Other information:

Ionic info:

This is a chatting application personal and group chatting.

ionitron-bot[bot] commented 4 years ago

Thanks for the issue! This issue has been labeled as needs reproduction. This label is added to issues that need a code reproduction.

Please provide a reproduction with the minimum amount of code required to reproduce the issue. Without a reliable code reproduction, it is unlikely we will be able to resolve the issue, leading to it being closed.

For a guide on how to create a good reproduction, see our Contributing Guide.

liamdebeasi commented 4 years ago

Thanks for the issue! This issue is being closed due to the lack of a code reproduction. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.

Thank you for using Ionic!