From 22ccb7e7e28db2811fc62c84c6c8195be1cf87d3 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Tue, 5 Apr 2016 19:11:11 +0000 Subject: [PATCH] Updated docs for 0.24 --- releases/0.24/docs/image.html | 23 +++++++++++++---------- versions.html | 4 ++-- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/releases/0.24/docs/image.html b/releases/0.24/docs/image.html index e58909be902..48be82fae12 100644 --- a/releases/0.24/docs/image.html +++ b/releases/0.24/docs/image.html @@ -42,6 +42,7 @@ rounded buttons, shadows, and other resizable assets. More info on var React = require('react-native'); var { Image, + Platform, StyleSheet, Text, View, @@ -442,16 +443,18 @@ exports.examples ={image} /> </View> - <View style={styles.leftMargin}> - <Text style={[styles.resizeModeText]}> - Center - </Text> - <Image - style={styles.resizeMode} - resizeMode={Image.resizeMode.center} - source={image} - /> - </View> + { Platform.OS === 'android' ? + <View style={styles.leftMargin}> + <Text style={[styles.resizeModeText]}> + Center + </Text> + <Image + style={styles.resizeMode} + resizeMode={Image.resizeMode.center} + source={image} + /> + </View> + : null } </View> </View> ); diff --git a/versions.html b/versions.html index 7439f5ec532..1aad9998548 100644 --- a/versions.html +++ b/versions.html @@ -1,4 +1,4 @@ -Documentation archive – React Native | A framework for building native apps using React

React Native Versions

React Native is following a 2-week train release. Every two weeks, a Release Candidate (rc) branch is created off of master and the previous rc branch is being officially released.

masterDocs
0.24-rcDocsRelease Notes
0.23-rcDocsRelease Notes
(current) 0.22DocsRelease Notes
0.21DocsRelease Notes
0.20DocsRelease Notes
0.19DocsRelease Notes
0.18DocsRelease Notes
© 2016 Facebook Inc.

React Native Versions

React Native is following a 2-week train release. Every two weeks, a Release Candidate (rc) branch is created off of master and the previous rc branch is being officially released.

masterDocs
0.24-rcDocsRelease Notes
0.23-rcDocsRelease Notes
(current) 0.22DocsRelease Notes
0.21DocsRelease Notes
0.20DocsRelease Notes
0.19DocsRelease Notes
0.18DocsRelease Notes
© 2016 Facebook Inc.
\ No newline at end of file