InteractionManager.runAfterInteractions()

static runAfterInteractions(task) Schedule a function to run after all interactions have completed.

Image#source

source ImageSourcePropType The image source (either a remote URL or a local file resource).

ScrollView#pagingEnabled

pagingEnabled bool When true, the scroll view stops on multiples of the scroll view's size when scrolling. This can be used for horizontal pagination. The default value is false.

ScrollView#bouncesZoom

iosbouncesZoom bool When true, gestures can drive zoom past min/max and the zoom will animate to the min/max value at gesture end, otherwise the zoom will not exceed the limits.

Picker#itemStyle

iositemStyle itemStylePropType Style to apply to each of the item labels.

ListView#renderSectionHeader

renderSectionHeader function (sectionData, sectionID) => renderable If provided, a sticky header is rendered for this section. The sticky behavior means that it will scroll with the content at the top of the section until it reaches the top of the screen, at which point it will stick to the top until it is pushed off the screen by the next section header.

Picker#onValueChange

onValueChange function Callback for when an item is selected. This is called with the following parameters: - itemValue: the value prop of the item that was selected - itemPosition: the index of the selected item in this picker

NetInfo.removeEventListener()

static removeEventListener(eventName, handler) Removes the listener for network status changes.

View#onMagicTap

onMagicTap function When accessible is true, the system will invoke this function when the user performs the magic tap gesture.

AsyncStorage.multiRemove()

static multiRemove(keys, callback?) Delete all the keys in the keys array. Returns a Promise object. Example: let keys = ['k1', 'k2']; AsyncStorage.multiRemove(keys, (err) => { // keys k1 & k2 removed, if they existed // do most stuff after removal (if you want) });