
Pavel JackoandFacebook Github Bot
b61583a780
Elements no longer focusable on tvOS (#26775)
Summary:
This PR fixes broken focus on tvOS due to `isTVSelectable` and `tvParallaxProperties` not being available in validAttributes definition object of ReactNativeViewViewConfig
## Changelog
[ios] [Fixed] - elements no longer focusable on tvOS
Pull Request resolved: https://github.com/facebook/react-native/pull/26775
Test Plan:
```
import React from 'react';
import {
StyleSheet,
View,
Text,
TouchableOpacity
} from 'react-native';
const parallax = {
enabled: true,
shiftDistanceY: 2,
shiftDistanceX: 2,
tiltAngle: 0.05,
pressMagnification: 1,
magnification: 1.1,
};
const Button: () => React$Node = () => (
<TouchableOpacity style={styles.buttonx} tvParallaxProperties={parallax}>
<Text>
Touchable Button
</Text>
</TouchableOpacity>
);
const App: () => React$Node = () => (
<View style={styles.wrapper}>
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
</View>
);
const styles = StyleSheet.create({
buttonx: {
backgroundColor: 'red',
height: 100,
width: 500
},
wrapper: {
justifyContent: 'center',
flex: 1,
alignItems: 'center'
}
});
export default App;
```

Differential Revision: D17845058
Pulled By: TheSavior
fbshipit-source-id: b6c71d370efd6cf7763ab3a98bbfe1630f789821
2019-10-09 17:49:41 -07:00
..
2019-09-30 14:32:21 -07:00
2019-10-09 12:34:00 -07:00
2019-10-08 12:33:43 -07:00
2019-08-09 10:11:15 -07:00
2019-09-13 07:47:57 -07:00
2019-10-09 05:48:15 -07:00
2019-10-07 14:55:39 -07:00
2019-10-03 14:33:59 -07:00
2019-10-07 14:55:39 -07:00
2018-09-11 15:33:07 -07:00
2019-10-09 17:49:41 -07:00
2019-09-30 07:03:51 -07:00
2019-09-18 03:16:42 -07:00
2019-08-09 10:11:15 -07:00
2019-08-23 08:06:44 -07:00
2019-10-03 15:43:38 -07:00
2019-10-09 12:34:00 -07:00
2019-08-09 10:11:15 -07:00
2019-10-09 12:33:59 -07:00
2019-10-03 14:33:59 -07:00
2019-08-23 08:45:11 -07:00
2019-08-09 10:11:15 -07:00
2019-08-09 10:11:15 -07:00
2019-08-09 10:11:15 -07:00
2019-09-29 19:01:13 -07:00
2019-10-03 14:33:59 -07:00
2019-10-03 14:33:59 -07:00
2019-09-23 09:30:38 -07:00
2019-09-30 07:03:51 -07:00
2019-09-24 12:41:05 -07:00
2019-08-30 04:57:40 -07:00
2019-08-09 10:11:15 -07:00
2019-09-29 17:45:27 -07:00
2019-08-26 23:56:59 -07:00
2019-08-09 10:11:15 -07:00
2019-10-03 15:43:38 -07:00
2019-09-25 14:47:02 -07:00
2019-08-22 17:50:36 -07:00
2019-10-09 09:37:03 -07:00
2019-09-20 13:37:25 -07:00
2019-10-07 14:55:39 -07:00
2019-08-09 10:11:15 -07:00
2019-08-09 10:11:15 -07:00
2019-09-29 18:49:45 -07:00
2019-05-10 10:10:27 -07:00
2018-09-11 15:33:07 -07:00
2019-09-17 09:20:54 -07:00
2019-08-09 10:11:15 -07:00
2019-08-15 10:18:16 -07:00
2019-10-02 11:01:59 -07:00
2019-10-03 12:29:47 -07:00
2019-09-24 18:51:45 -07:00
2019-10-07 14:55:39 -07:00
2019-08-21 15:49:16 -07:00
2019-07-23 03:23:11 -07:00
2019-08-26 23:56:59 -07:00
2018-02-27 08:42:14 -08:00
2019-03-27 20:48:45 -07:00
2019-05-08 08:48:59 -07:00
2019-08-21 09:58:24 -07:00