浏览代码

rn: disable vertical scrollbars on bottom sheets

master
Saúl Ibarra Corretgé 6 年前
父节点
当前提交
30c0bfc108
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      react/features/base/dialog/components/native/BottomSheet.js

+ 3
- 1
react/features/base/dialog/components/native/BottomSheet.js 查看文件

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

正在加载...
取消
保存