diff --git a/css/main.css b/css/main.css index b8904e0f5d4..bb981e12979 100644 --- a/css/main.css +++ b/css/main.css @@ -2119,6 +2119,16 @@ body { background-color: #f5fcff !important; } +@media only screen and (min-width: 1024px) { + .mainContainer { + margin-left: 20px; + } +} + +.docsNavContainer { + width: 240px; +} + .mainContainer h1, .mainContainer h2, .mainContainer h3, diff --git a/docs/next/geolocation.html b/docs/next/geolocation.html index 6b248f0434f..415c020c783 100644 --- a/docs/next/geolocation.html +++ b/docs/next/geolocation.html @@ -60,12 +60,12 @@

getCurrentPosition()

static getCurrentPosition(geo_success, geo_error?, geo_options?)
 
-

Invokes the success callback once with the latest location info. Supported options: timeout (ms), maximumAge (ms), enableHighAccuracy (bool) On Android, if the location is cached this can return almost immediately, or it will request an update which might take a while.

+

Invokes the success callback once with the latest location info. Supported options: timeout (ms), maximumAge (ms, default - INFINITY), enableHighAccuracy (bool) On Android, if the location is cached this can return almost immediately, or it will request an update which might take a while.


watchPosition()

static watchPosition(success, error?, options?)
 
-

Invokes the success callback whenever the location changes. Supported options: timeout (ms), maximumAge (ms), enableHighAccuracy (bool), distanceFilter(m), useSignificantChanges (bool)

+

Invokes the success callback whenever the location changes. Supported options: timeout (ms), maximumAge (ms, default - INFINITY), enableHighAccuracy (bool), distanceFilter(m), useSignificantChanges (bool)


clearWatch()

static clearWatch(watchID)
diff --git a/docs/next/tutorial.html b/docs/next/tutorial.html
index bbb9fc1515e..dafee9fa5aa 100644
--- a/docs/next/tutorial.html
+++ b/docs/next/tutorial.html
@@ -18,8 +18,7 @@
     );
   }
 }
-
-
+

If you are feeling curious, you can play around with sample code directly in the web simulators. You can also paste it into your App.js file to create a real app on your local machine.

What's going on here?

diff --git a/docs/next/using-a-scrollview.html b/docs/next/using-a-scrollview.html index df1bba3a807..bf619e389e8 100644 --- a/docs/next/using-a-scrollview.html +++ b/docs/next/using-a-scrollview.html @@ -57,7 +57,7 @@ AppRegistry.registerComponent(

ScrollViews can be configured to allow paging through views using swiping gestures by using the pagingEnabled props. Swiping horizontally between views can also be implemented on Android using the ViewPagerAndroid component.

A ScrollView with a single item can be used to allow the user to zoom content. Set up the maximumZoomScale and minimumZoomScale props and your user will be able to use pinch and expand gestures to zoom in and out.

-

The ScrollView works best to present a small amount of things of a limited size. All the elements and views of a ScrollView are rendered, even if they are not currently shown on the screen. If you have a long list of more items that can fit on the screen, you should use a FlatList instead. So let's learn about list views next.

+

The ScrollView works best to present a small amount of things of a limited size. All the elements and views of a ScrollView are rendered, even if they are not currently shown on the screen. If you have a long list of more items than can fit on the screen, you should use a FlatList instead. So let's learn about list views next.

← Handling TouchesUsing List Views →

React Native

0.52-RC

React Native

0.52-RC

React Native

0.52-RC

React Native

0.52-RC