react-native
react-native copied to clipboard
A framework for building native applications using React
## Description - When removing animations through "Android settings" -> "Accessibility" -> "Remove animations", it doesn't seem to result in `AccessibilityInfo.isReduceMotionEnabled()` returning `true` or the change event to fire. -...
Keyboard focus (from a physical keyboard) won't enter TextInput fields on Tab/Shift+Tab in Android
## Description On Android devices, when other focusable controls (such as Buttons) are adjacent to a TextInput component, and a physical keyboard is used to interact with the app (e.g....
When including a placeholder property in a TextInput component, the accessibilityLabel and accessibilityHint properties are not read out in the screen reader. Example: ` {set_searchFocus(bool);}} value={searchKey} inputAccessoryViewID={inputAccessoryViewID} placeholderTextColor={'#767676'} keyboardType= "default"...
## 🐛 Bug Report When using `` in combination with TalkBack on android you can't double tap to give the field focus. Double tap and hold on the other hand...
## Description When using `PixelRatio.getFontScale` within an application, the value does not update after the system font size changes without reloading the app. ## React Native version: ``` System: OS:...
## Description If `accessibilityState` prop is set to "disabled" it can not be changed by setting `accessibilityState` to empty object/null or to false, e.g. `{ disabled: false }`. ## React...
### Is this a bug report? Yes ### Have you read the [Contributing Guidelines](https://facebook.github.io/react-native/docs/contributing.html)? Yes ### Environment Environment: OS: macOS High Sierra 10.13.1 Node: 6.12.0 Yarn: 1.3.2 npm: 5.5.1 Watchman:...
## Description Using a 7" Amazon Fire tablet v6.0 & v7.0 with VoiceView enabled, components with the following props, `accessibilityRole="adjustable"`, `accessibilityActions=[{ name: "increment" }, { name: "decrement"}]`, and `onAccessibilityAction={callback}`, announce...
## Description The `disabled` prop on TouchableOpacity component is ignored on Android when using the built in screen reader (i.e. TalkBack). The onPress function is triggered no matter the value...
## Description Hi! This is an easy problem to describe. We have this piece of code: ``` {label} {value} ``` Where the `accessibilityProps` are these: ``` accessibilityActions: [ { name:...