fix(mobile-pagination): Disable bounce effect.

This commit is contained in:
Hristo Terezov 2021-08-27 16:38:03 -05:00
parent bb670fd90d
commit c2ffcdc67e
2 changed files with 2 additions and 0 deletions

View File

@ -227,6 +227,7 @@ class Filmstrip extends PureComponent<Props> {
&& <LocalThumbnail />
}
<FlatList
bounces = { false }
data = { participants }
getItemLayout = { this._getItemLayout }
horizontal = { isNarrowAspectRatio }

View File

@ -186,6 +186,7 @@ class TileView extends PureComponent<Props> {
<TouchableWithoutFeedback onPress = { onClick }>
<View style = { styles.flatListContainer }>
<FlatList
bounces = { false }
contentContainerStyle = { this._contentContainerStyles }
data = { participants }
horizontal = { false }