Browse Source

fix(mobile-pagination): Disable bounce effect.

master
Hristo Terezov 4 years ago
parent
commit
c2ffcdc67e

+ 1
- 0
react/features/filmstrip/components/native/Filmstrip.js View File

227
                         && <LocalThumbnail />
227
                         && <LocalThumbnail />
228
                 }
228
                 }
229
                 <FlatList
229
                 <FlatList
230
+                    bounces = { false }
230
                     data = { participants }
231
                     data = { participants }
231
                     getItemLayout = { this._getItemLayout }
232
                     getItemLayout = { this._getItemLayout }
232
                     horizontal = { isNarrowAspectRatio }
233
                     horizontal = { isNarrowAspectRatio }

+ 1
- 0
react/features/filmstrip/components/native/TileView.js View File

186
             <TouchableWithoutFeedback onPress = { onClick }>
186
             <TouchableWithoutFeedback onPress = { onClick }>
187
                 <View style = { styles.flatListContainer }>
187
                 <View style = { styles.flatListContainer }>
188
                     <FlatList
188
                     <FlatList
189
+                        bounces = { false }
189
                         contentContainerStyle = { this._contentContainerStyles }
190
                         contentContainerStyle = { this._contentContainerStyles }
190
                         data = { participants }
191
                         data = { participants }
191
                         horizontal = { false }
192
                         horizontal = { false }

Loading…
Cancel
Save