ScrollView#horizontal

horizontal bool When true, the scroll view's children are arranged horizontally in a row instead of vertically in a column. The default value is false.

Images

Static Image Resources As of 0.14 release, React Native provides a unified way of managing images in your iOS and Android apps. To add a static image to your app, place it somewhere in your source code tree and reference it like this: <Image source={require('./my-icon.png')} /> The image name is resolved the same way JS modules are resolved. In the example above the packager will look for my-icon.png in the same folder as the component that requires it. Also if you have my-icon.ios.png

PickerIOS#itemStyle

itemStyle itemStylePropType

ListView#scrollRenderAheadDistance

scrollRenderAheadDistance number How early to start rendering rows before they come on screen, in pixels.

NativeMethodsMixin.measureLayout()

static measureLayout(relativeToNativeNode, onSuccess, onFail) Like measure(), but measures the view relative an ancestor, specified as relativeToNativeNode. This means that the returned x, y are relative to the origin x, y of the ancestor view. As always, to obtain a native node handle for a component, you can use React.findNodeHandle(component).

Flexbox#flexWrap

flexWrap enum('wrap', 'nowrap')

Animated#addListener()

addListener(callback) Adds an asynchronous listener to the value so you can observe updates from animations. This is useful because there is no way to synchronously read the value because it might be driven natively.

ScrollView#onScroll

onScroll function Fires at most once per frame during scrolling. The frequency of the events can be controlled using the scrollEventThrottle prop.

TextInput#underlineColorAndroid

androidunderlineColorAndroid string The color of the textInput underline.

ToolbarAndroid#title

title string Sets the toolbar title.