From 637c8599edb72d8c442450d5feddce4c3e82bc70 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 13 Oct 2017 07:21:02 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/sectionlist.html | 2 +- releases/next/docs/using-a-scrollview.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {