diff --git a/releases/next/docs/sectionlist.html b/releases/next/docs/sectionlist.html index 942ba90d10d..1d793c2ed0b 100644 --- a/releases/next/docs/sectionlist.html +++ b/releases/next/docs/sectionlist.html @@ -2,7 +2,7 @@ <FlatList>.

Simple Examples:

<SectionList renderItem={({item}) => <ListItem title={item} />} renderSectionHeader={({section}) => <Header title={section.title} />} - sections={[ // homogenous rendering between sections + sections={[ // homogeneous rendering between sections {data: [...], title: ...}, {data: [...], title: ...}, {data: [...], title: ...}, diff --git a/releases/next/docs/using-a-scrollview.html b/releases/next/docs/using-a-scrollview.html index 07cbc661451..ba0575ebdf0 100644 --- a/releases/next/docs/using-a-scrollview.html +++ b/releases/next/docs/using-a-scrollview.html @@ -1,4 +1,4 @@ -Using a ScrollView - React Native

Using a ScrollView #

The ScrollView is a generic scrolling container that can host multiple components and views. The scrollable items need not be homogenous, and you can scroll both vertically and horizontally (by setting the horizontal property).

This example creates a vertical ScrollView with both images and text mixed together.

import React, { Component } from 'react'; +Using a ScrollView - React Native

Using a ScrollView #

The ScrollView is a generic scrolling container that can host multiple components and views. The scrollable items need not be homogeneous, and you can scroll both vertically and horizontally (by setting the horizontal property).

This example creates a vertical ScrollView with both images and text mixed together.

import React, { Component } from 'react'; import { AppRegistry, ScrollView, Image, Text } from 'react-native'; export default class IScrolledDownAndWhatHappenedNextShockedMe extends Component {