프로그래밍/React
React-Native TypeScript ScrollView To The End
sidongmen
2020. 7. 16. 03:52
React Native 0.41 이상일 경우
<ScrollView
ref={ref => this.scrollView = ref}
onContentSizeChange={(contentWidth, contentHeight)=>{
this.scrollView.scrollToEnd({animated: true});
}}>
</ScrollView>
flatList에서
<FlatList
ref={'flatList'}
data={this.state.message}
renderItem={({ item }) => this._onRefresh(item)}
keyExtractor={(item, index: number) => { return index.toString() }}
onContentSizeChange={(contentWidth, contentHeight)=>{
(this.refs.flatList as FlatList).scrollToEnd({animated: true});
}}
/>