rn: disable vertical scrollbars on bottom sheets

This commit is contained in:
Saúl Ibarra Corretgé 2019-06-12 16:54:28 +02:00 committed by Saúl Ibarra Corretgé
parent df50e7fa69
commit 30c0bfc108
1 changed files with 3 additions and 1 deletions

View File

@ -61,7 +61,9 @@ class BottomSheet extends PureComponent<Props> {
styles.sheetItemContainer,
_styles.sheet
] }>
<ScrollView bounces = { false }>
<ScrollView
bounces = { false }
showsVerticalScrollIndicator = { false }>
{ this._getWrappedContent() }
</ScrollView>
</View>