InteractionManager.clearInteractionHandle()

static clearInteractionHandle(handle) Notify manager that an interaction has completed.

ActionSheetIOS.showActionSheetWithOptions()

static showActionSheetWithOptions(options, callback) Display an iOS action sheet. The options object must contain one or more of: options (array of strings) - a list of button titles (required) cancelButtonIndex (int) - index of cancel button in options destructiveButtonIndex (int) - index of destructive button in options title (string) - a title to show above the action sheet message (string) - a message to show below the title

ListView#pageSize

pageSize number Number of rows to render per event loop. Note: if your 'rows' are actually cells, i.e. they don't span the full width of your view (as in the ListViewGridLayoutExample), you should set the pageSize to be a multiple of the number of cells per row, otherwise you're likely to see gaps at the edge of the ListView as new pages are loaded.

InteractionManager.setDeadline()

static setDeadline(deadline) A positive number will use setTimeout to schedule any tasks after the eventLoopRunningTime hits the deadline value, otherwise all tasks will be executed in one setImmediate batch (default).

Navigator#navigationBar

navigationBar node Optionally provide a component as navigation bar that persists across scene transitions. The component will receive two props: navigator and navState. It will be rerendered when the routes change.

ListView#renderScrollComponent

renderScrollComponent function (props) => renderable A function that returns the scrollable component in which the list rows are rendered. Defaults to returning a ScrollView with the given props.

TextInput#onFocus

onFocus function Callback that is called when the text input is focused

TouchableHighlight#activeOpacity

activeOpacity number Determines what the opacity of the wrapped view should be when touch is active.

ListView#scrollTo()

scrollTo(...args) Scrolls to a given x, y offset, either immediately or with a smooth animation. See ScrollView#scrollTo.

StatusBar.setTranslucent()

static setTranslucent(translucent: boolean)