You can scroll to any element ref on your view by using the code block below.
Note that the target (elementref id) could be on any valid html tag.
On the view(html file)
on the .ts
file,
scroll() {
document.querySelector('#target').scrollIntoView({ behavior: 'smooth', block: 'center' });
}