From 0525d4a1284b9f9f8fe9d8ee903268938e1c3201 Mon Sep 17 00:00:00 2001 From: Jimmy Mayoukou Date: Fri, 20 May 2016 13:25:29 -0700 Subject: [PATCH] Fix Linking Example Summary: It seems like the examples weren't working since the merge of `IntentAndroid` and `LinkingIOS` since they were still using `TouchableNativeFeedback` only available on Android. The problem was also reported here : https://github.com/facebook/react-native/issues/7615 Closes https://github.com/facebook/react-native/pull/7655 Differential Revision: D3329233 fbshipit-source-id: 8c9cabaab0a616dab406c4e444c9fa6da5f54b6d --- Examples/UIExplorer/LinkingExample.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples/UIExplorer/LinkingExample.js b/Examples/UIExplorer/LinkingExample.js index 2c1a1cbd18..390d003146 100644 --- a/Examples/UIExplorer/LinkingExample.js +++ b/Examples/UIExplorer/LinkingExample.js @@ -19,7 +19,7 @@ var { Linking, StyleSheet, Text, - TouchableNativeFeedback, + TouchableOpacity, View, } = ReactNative; var UIExplorerBlock = require('./UIExplorerBlock'); @@ -42,12 +42,12 @@ var OpenURLButton = React.createClass({ render: function() { return ( - Open {this.props.url} - + ); } });