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
For React Native 0.41 and later, you can do this with the built-in scrollToEnd method:
{this.scrollView = ref}} onContentSizeChange={() => this.scrollView.scrollToEnd({animated: true})}>