For a chat-like app, I want to keep a ScrollView component scrolled to the bottom, because newest messages appear under the older ones. Can we adjust the scroll
ScrollView
In case anyone in 2020 or later is wondering how to achieve this with functional components. This is how I did:
ref={ref => scrollView = ref } onContentSizeChange={() => scrollView.scrollToEnd({ animated: true })}>