In HTML:
<ion-content padding #pageContent>
------- --
-------
</ion-content>
In Component:
@ViewChild('pageContent') pageContent: Content;
then in a method:
setTimeout(() => {
this.pageContent.scrollToBottom();
}, 300);
<ion-content padding #pageContent>
------- --
-------
</ion-content>
In Component:
@ViewChild('pageContent') pageContent: Content;
then in a method:
setTimeout(() => {
this.pageContent.scrollToBottom();
}, 300);