Sfoglia il codice sorgente

rn: disable vertical scrollbars on bottom sheets

master
Saúl Ibarra Corretgé 5 anni fa
parent
commit
30c0bfc108

+ 3
- 1
react/features/base/dialog/components/native/BottomSheet.js Vedi File

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

Loading…
Annulla
Salva