ionic page scroll to bottom example

import { Content } from 'ionic-angular'; //ionic3
@ViewChild(Content) content: Content; // ionic3
 import { Content } from '@angular/compiler/src/render3/r3_ast'; //ionic5
@ViewChild(Content, {static: true}) content: Content;  //ionic5

scrollToBottom() {
    setTimeout(() => {
      this.content.scrollToBottom();
    }, 100);
  }

Comments

Popular posts from this blog

How to Add Firebase Analytics to Your NativeScript Mobile App

how to split array as per fixed length, and ionic two dates differences in min,seconds,hours