Procházet zdrojové kódy

rn: disable vertical scrollbars on bottom sheets

master
Saúl Ibarra Corretgé před 6 roky
rodič
revize
30c0bfc108

+ 3
- 1
react/features/base/dialog/components/native/BottomSheet.js Zobrazit soubor

@@ -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>

Načítá se…
Zrušit
Uložit