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

sidemenu refresh through events

push multiple data in array(select and disselect items in array)