MapView#maxDelta

iosmaxDelta number Maximum size of area that can be displayed.

Animated.delay()

static delay(time) Starts an animation after the given delay.

Animated#animate()

animate(animation, callback) Typically only used internally, but could be used by a custom Animation class.

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.

AppState#removeEventListener()

removeEventListener(type, handler) Remove a handler by passing the change event type and the handler

ScrollView#onScroll

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

PushNotificationIOS.presentLocalNotification()

static presentLocalNotification(details) Schedules the localNotification for immediate presentation. details is an object containing: alertBody : The message displayed in the notification alert. alertAction : The "action" displayed beneath an actionable notification. Defaults to "view"; soundName : The sound played when the notification is fired (optional). category : The category of this notification, required for actionable notifications (optional). userInfo : An optional object conta

ScrollView#maximumZoomScale

iosmaximumZoomScale number The maximum allowed zoom scale. The default value is 1.0.

View#onStartShouldSetResponderCapture

onStartShouldSetResponderCapture function

AsyncStorage.multiGet()

static multiGet(keys, callback?) multiGet invokes callback with an array of key-value pair arrays that matches the input format of multiSet. Returns a Promise object. multiGet(['k1', 'k2'], cb) -> cb([['k1', 'val1'], ['k2', 'val2']]) Example: AsyncStorage.getAllKeys((err, keys) => { AsyncStorage.multiGet(keys, (err, stores) => { stores.map((result, i, store) => { // get at each store's key/value so you can work with it let key = store[i][0]; let value = store