Answers for "ionic scroll to item programmatically"

0

ionic scroll to item programmatically

@ViewChild(IonContent) content: IonContent;

ScrollToBottom(){
    this.content.scrollToBottom(1500);
  }
 
  ScrollToTop(){
    this.content.scrollToTop(1500);
  }
 
  ScrollToPoint(X,Y){
    this.content.scrollToPoint(X,Y,1500);
  }
Posted by: Guest on February-23-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language