/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow * @format */ 'use strict'; import type {RNTesterModuleExample} from '../../types/RNTesterTypes'; const {RNTesterThemeContext} = require('../../components/RNTesterTheme'); const React = require('react'); const {Alert, Text, View} = require('react-native'); type Props = $ReadOnly<{}>; class AccessibilityIOSExample extends React.Component { render(): React.Node { return ( {theme => ( <> { if (event.nativeEvent.actionName === 'activate') { Alert.alert('Alert', 'onAccessibilityTap success'); } }} accessible={true} accessibilityActions={[{name: 'activate'}]}> Accessibility normal tap example { if (event.nativeEvent.actionName === 'magicTap') { Alert.alert('Alert', 'onMagicTap success'); } }} accessible={true} accessibilityActions={[{name: 'magicTap'}]}> Accessibility magic tap example { if (event.nativeEvent.actionName === 'escape') { Alert.alert('onAccessibilityEscape success'); } }} accessible={true} accessibilityActions={[{name: 'escape'}]}> Accessibility escape example This view's children are hidden from the accessibility tree This view's language should be `it-IT` )} ); } } exports.title = 'AccessibilityIOS'; exports.description = 'iOS specific Accessibility APIs'; exports.examples = [ { title: 'iOS Accessibility elements', render(): React.MixedElement { return ; }, }, ] as Array;