Prevent drawer from swiping to teams when jump to channel is focused (#1902)
This commit is contained in:
parent
6458ed871b
commit
360c8cd2e3
1 changed files with 2 additions and 2 deletions
|
|
@ -144,9 +144,9 @@ export default class Swiper extends PureComponent {
|
|||
contentContainerStyle={[styles.wrapperIOS, this.props.style]}
|
||||
onScrollBeginDrag={this.onScrollBegin}
|
||||
onMomentumScrollEnd={this.onScrollEnd}
|
||||
pagingEnabled={true}
|
||||
pagingEnabled={scrollEnabled}
|
||||
keyboardShouldPersistTaps={keyboardShouldPersistTaps}
|
||||
scrollEnabled={true}
|
||||
scrollEnabled={scrollEnabled}
|
||||
>
|
||||
{pages}
|
||||
</ScrollView>
|
||||
|
|
|
|||
Loading…
Reference in a new issue