File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
src/design-system/bottomSheets Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 7
7
BottomSheetView ,
8
8
} from '@gorhom/bottom-sheet'
9
9
import { useCallback } from 'react'
10
- import { Dimensions } from 'react-native'
10
+ import { Dimensions , Platform } from 'react-native'
11
11
12
12
import { BottomSheetHeader } from './BottomSheetHeader'
13
13
import { BottomSheetScrollView } from './BottomSheetScrollables'
@@ -45,6 +45,11 @@ export const BottomSheet = ({
45
45
snapPoints = { [ screenHeight - top - 24 ] }
46
46
backdropComponent = { renderBackdrop }
47
47
enableDynamicSizing
48
+ accessible = { Platform . select ( {
49
+ // setting it to false on Android seems to cause issues with TalkBack instead
50
+ // https://github.com/mobile-dev-inc/maestro/issues/1493
51
+ ios : false ,
52
+ } ) }
48
53
backgroundStyle = { {
49
54
// eslint-disable-next-line react-native/no-inline-styles
50
55
backgroundColor : colors . bg . primary ,
You can’t perform that action at this time.
0 commit comments