rn: disable vertical scrollbars on bottom sheets
This commit is contained in:
parent
df50e7fa69
commit
30c0bfc108
|
@ -61,7 +61,9 @@ class BottomSheet extends PureComponent<Props> {
|
||||||
styles.sheetItemContainer,
|
styles.sheetItemContainer,
|
||||||
_styles.sheet
|
_styles.sheet
|
||||||
] }>
|
] }>
|
||||||
<ScrollView bounces = { false }>
|
<ScrollView
|
||||||
|
bounces = { false }
|
||||||
|
showsVerticalScrollIndicator = { false }>
|
||||||
{ this._getWrappedContent() }
|
{ this._getWrappedContent() }
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
</View>
|
</View>
|
||||||
|
|
Loading…
Reference in New Issue