diff --git a/docs/image.html b/docs/image.html index 9ed43f39986..0c4d715feb7 100644 --- a/docs/image.html +++ b/docs/image.html @@ -128,6 +128,7 @@ exports.examples ={{uri: 'http://TYPO_ERROR_facebook.github.io/react/img/logo_og.png'}} /> ); }, + platform: 'ios', }, { title: 'Image Download Progress', @@ -136,6 +137,7 @@ exports.examples ={{uri: 'http://facebook.github.io/origami/public/images/blog-hero.jpg?r=1'}}/> ); }, + platform: 'ios', }, { title: 'Border Color', @@ -153,6 +155,7 @@ exports.examples /View> ); }, + platform: 'ios', }, { title: 'Border Width', @@ -170,6 +173,7 @@ exports.examples /View> ); }, + platform: 'ios', }, { title: 'Border Radius', @@ -177,17 +181,12 @@ exports.examples return ( <View style={styles.horizontal}> <Image - style={[styles.base, styles.background, {borderRadius: 5}]} - source={smallImage} + style={[styles.base, {borderRadius: 5}]} + source={fullImage} /> <Image - style={[ - styles.base, - styles.background, - styles.leftMargin, - {borderRadius: 19} - ]} - source={smallImage} + style={[styles.base, styles.leftMargin, {borderRadius: 19}]} + source={fullImage} /> </View> ); @@ -276,19 +275,19 @@ exports.examples ={styles.horizontal}> <Image source={require('image!uie_thumb_normal')} - style={[styles.icon, {tintColor: '#5ac8fa' }]} + style={[styles.icon, {borderRadius: 5, tintColor: '#5ac8fa' }]} /> <Image source={require('image!uie_thumb_normal')} - style={[styles.icon, styles.leftMargin, {tintColor: '#4cd964' }]} + style={[styles.icon, styles.leftMargin, {borderRadius: 5, tintColor: '#4cd964' }]} /> <Image source={require('image!uie_thumb_normal')} - style={[styles.icon, styles.leftMargin, {tintColor: '#ff2d55' }]} + style={[styles.icon, styles.leftMargin, {borderRadius: 5, tintColor: '#ff2d55' }]} /> <Image source={require('image!uie_thumb_normal')} - style={[styles.icon, styles.leftMargin, {tintColor: '#8e8e93' }]} + style={[styles.icon, styles.leftMargin, {borderRadius: 5, tintColor: '#8e8e93' }]} /> </View> <Text style={styles.sectionText}> @@ -297,19 +296,19 @@ exports.examples ={styles.horizontal}> <Image source={smallImage} - style={[styles.base, {tintColor: '#5ac8fa' }]} + style={[styles.base, {borderRadius: 5, tintColor: '#5ac8fa' }]} /> <Image source={smallImage} - style={[styles.base, styles.leftMargin, {tintColor: '#4cd964' }]} + style={[styles.base, styles.leftMargin, {borderRadius: 5, tintColor: '#4cd964' }]} /> <Image source={smallImage} - style={[styles.base, styles.leftMargin, {tintColor: '#ff2d55' }]} + style={[styles.base, styles.leftMargin, {borderRadius: 5, tintColor: '#ff2d55' }]} /> <Image source={smallImage} - style={[styles.base, styles.leftMargin, {tintColor: '#8e8e93' }]} + style={[styles.base, styles.leftMargin, {borderRadius: 5, tintColor: '#8e8e93' }]} /> </View> </View> @@ -367,6 +366,7 @@ exports.examples : function() { return <ImageCapInsetsExample />; }, + platform: 'ios', }, ]; diff --git a/docs/linkingios.html b/docs/linkingios.html index c9d71abf23b..f4c4aacdb59 100644 --- a/docs/linkingios.html +++ b/docs/linkingios.html @@ -1,5 +1,5 @@ LinkingIOS – React Native | A framework for building native apps using React

LinkingIOS

LinkingIOS gives you a general interface to interact with both, incoming -and outgoing app links.

Basic Usage #

Handling deep links #

If your app was launched from a external url registered to your app you can +and outgoing app links.

Basic Usage #

Handling deep links #

If your app was launched from an external url registered to your app you can access and handle it from any component you want with

componentDidMount() { var url = LinkingIOS.popInitialURL(); }

In case you also want to listen to incoming app links during your app's @@ -21,7 +21,7 @@ execution you'll need to add the following lines to you *AppDelegate. LinkingIOS.openURL(url); } });

Methods #

static addEventListener(type: string, handler: Function) #

Add a handler to LinkingIOS changes by listening to the url event type -and providing the handler

static removeEventListener(type: string, handler: Function) #

Remove a handler by passing the url event type and the handler

static openURL(url: string) #

Try to open the given url with any of the installed apps.

static canOpenURL(url: string, callback: Function) #

Determine wether or not the an installed app can handle a given url +and providing the handler

static removeEventListener(type: string, handler: Function) #

Remove a handler by passing the url event type and the handler

static openURL(url: string) #

Try to open the given url with any of the installed apps.

static canOpenURL(url: string, callback: Function) #

Determine wether or not an installed app can handle a given url The callback function will be called with bool supported as the only argument

static popInitialURL() #

If the app launch was triggered by an app link, it will pop the link url, otherwise it will return null

TouchableWithoutFeedback

Do not use unless you have a very good reason. All the elements that respond to press should have a visual feedback when touched. This is one of the primary reason a "web" app doesn't feel "native".

Edit on GitHubProps #

accessible bool #

Called when the touch is released, but not if cancelled (e.g. by a scroll -that steals the responder lock).

delayLongPress number #

Delay in ms, from onPressIn, before onLongPress is called.

delayPressIn number #

Delay in ms, from the start of the touch, before onPressIn is called.

delayPressOut number #

Delay in ms, from the release of the touch, before onPressOut is called.

onLongPress function #

onPress function #

onPressIn function #

onPressOut function #