We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a3409b + e35294b commit 5b205feCopy full SHA for 5b205fe
components/SwipeListView.js
@@ -137,6 +137,8 @@ class SwipeListView extends PureComponent {
137
if (this.yScrollOffset >= height && height > 0) {
138
if (this._listView instanceof FlatList) {
139
this._listView && this._listView.scrollToEnd();
140
+ } else if (this._listView instanceof SectionList) {
141
+ this._listView.scrollToEnd && this._listView.scrollToEnd();
142
} else if (this._listView instanceof Animated.FlatList) {
143
this._listView.scrollToEnd && this._listView.scrollToEnd();
144
}
0 commit comments