Linking#addEventListener()

addEventListener(type, handler) Add a handler to Linking changes by listening to the url event type and providing the handler

MapView#mapType

iosmapType enum('standard', 'satellite', 'hybrid') The map type to be displayed. standard: standard road map (default) satellite: satellite view hybrid: satellite view with roads and points of interest overlaid

Geolocation.getCurrentPosition()

static getCurrentPosition(geo_success, geo_error?, geo_options?) Invokes the success callback once with the latest location info. Supported options: timeout (ms), maximumAge (ms), enableHighAccuracy (bool) On Android, this can return almost immediately if the location is cached or request an update, which might take a while.

DatePickerIOS#minimumDate

minimumDate Date Minimum date. Restricts the range of possible date/time values.

MapView#minDelta

iosminDelta number Minimum size of area that can be displayed.

LayoutAnimation#configChecker

configChecker: CallExpression

Text#numberOfLines

numberOfLines number Used to truncate the text with an ellipsis after computing the text layout, including line wrapping, such that the total number of lines does not exceed this number.

View#onLayout

onLayout function Invoked on mount and layout changes with {nativeEvent: { layout: {x, y, width, height}}}. This event is fired immediately once the layout has been calculated, but the new layout may not yet be reflected on the screen at the time the event is received, especially if a layout animation is in progress.

TextInput#selectionState

iosselectionState DocumentSelectionState See DocumentSelectionState.js, some state that is responsible for maintaining selection information for a document

AsyncStorage.setItem()

static setItem(key, value, callback?) Sets value for key and calls callback on completion, along with an Error if there is any. Returns a Promise object.