I\'m trying to code a page with two segments \"chat\" and \"content\". I want that one \"chat\" segment the page auto-scroll to the bottom with no effect. The chat is a &l
&l
This is my solution with Ionic CLI 5.4.16 :
In page HTML:
In page .TS:
@ViewChild('content', { static: true }) content: any; constructor(){} getInformation(){ //Your Code .......... //At the end **this.content.scrollToBottom();** }