Navigate different parts of a page

Hi every one
so Im using ionic to develop a PWA and in my webpage I am willing to have a long HomePage.
for better user experience, I want to allow user to jump to a specific part o the page as they want.
based on my previous knowledge in html I tried using id and href (as anchor and link)
but apparently it doesn’t work that way in ionic because ionic does not rely on URL rooting for navigation.
so what is my alternative solution to make this happen?

thanks a lot for helping me

This is pretty unidiomatic for single-page applications such as Angular apps. I would instead reorganize things so that you don’t have a long HomePage, with each bit you think of as a “segment” of the HomePage being instead its own page.

1 Like