Scroll to bottom of IonList? (Ionic v4 React)

  const scrollToBottom = () => {
    let list = document.querySelector("ion-content");
    return list && list.scrollToBottom();
  };
2 Likes