If i enter a long text in my elastic ion-textarea. Then while scrolling down it is automatically scrolling up

<ion-textarea fz-elastic
                               
       [(ngModel)]="addMe">
       
     </ion-textarea>

if i am pasting a long text, let’s say 1000 words and then after pasting such text i am scrolling to the bottom of the page just to see the last point of my pasted text , then page automatically scrolls up. seems like it is not allowing me to scroll to bottom

This sounds a bit like Ionic and angular2-elastic/fz-elastics not playing well together in your specific use case, probably the Ionic “shell” around the textarea not getting updated correctly to match the new height.

if i don’t use elastic , then whole screen is not getting utilized. so i need to use elastic for app’s requirement.