Tips for building react native apps
You can use redux with react-native. However, some of the newer versions Do Not work with react-native.
errors when using connect e.g. export default connect(mapStateToProps)(myComponent)
ensure react-redux version is "react-redux": "6.0.1". If using npm, yarn or similar, this can be set in the apps package.json file.
errors when createMaterialTopTabNavigator is used. e.g Warning: Failed prop type: The prop `bounces` is marked as required in `PagerAndroid`, but its value is `undefined`.
ensure bounces is passed in TabNavigatorConfig
e.g.
createMaterialTopTabNavigator({ HomeStack, LinkStack, SettingsStack, }, {bounces: false});