TextInput#autoCorrect

autoCorrect bool If false, disables auto-correct. The default value is true.

ToolbarAndroid#title

title string Sets the toolbar title.

TextInput#underlineColorAndroid

androidunderlineColorAndroid string The color of the textInput underline.

Animated.createAnimatedComponent()

static createAnimatedComponent(Component) Make any React component Animatable. Used to create Animated.View, etc.

Timers

Timers are an important part of an application and React Native implements the browser timers. Timers setTimeout, clearTimeout setInterval, clearInterval setImmediate, clearImmediate requestAnimationFrame, cancelAnimationFrame requestAnimationFrame(fn) is not the same as setTimeout(fn, 0) - the former will fire after all the frame has flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). setImmediate is executed at the end of the current JavaSc

ListView#scrollRenderAheadDistance

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

PickerIOS#itemStyle

itemStyle itemStylePropType

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

TouchableWithoutFeedback#delayLongPress

delayLongPress number Delay in ms, from onPressIn, before onLongPress is called.

NavigatorIOS#barTintColor

barTintColor string The default background color of the navigation bar