fix(mobile-pagination): Disable bounce effect.
This commit is contained in:
parent
bb670fd90d
commit
c2ffcdc67e
|
@ -227,6 +227,7 @@ class Filmstrip extends PureComponent<Props> {
|
|||
&& <LocalThumbnail />
|
||||
}
|
||||
<FlatList
|
||||
bounces = { false }
|
||||
data = { participants }
|
||||
getItemLayout = { this._getItemLayout }
|
||||
horizontal = { isNarrowAspectRatio }
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Reference in New Issue