Flexbox#paddingHorizontal

paddingHorizontal number

SliderIOS#value

value number Initial value of the slider. The value should be between minimumValue and maximumValue, which default to 0 and 1 respectively. Default value is 0. This is not a controlled component, e.g. if you don't update the value, the component won't be reset to its initial value.

Switch#tintColor

iostintColor color Background color when the switch is turned off.

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.

ListView#onChangeVisibleRows

onChangeVisibleRows function (visibleRows, changedRows) => void Called when the set of visible rows changes. visibleRows maps { sectionID: { rowID: true }} for all the visible rows, and changedRows maps { sectionID: { rowID: true | false }} for the rows that have changed their visibility, with true indicating visible, and false indicating the view has moved out of view.

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.

StatusBar#showHideTransition

iosshowHideTransition enum('fade', 'slide') The transition effect when showing and hiding the status bar using the hidden prop. Defaults to 'fade'.

MapView#onRegionChangeComplete

onRegionChangeComplete function Callback that is called once, when the user is done moving the map.

WebView#reload()

reload() Reloads the current page.

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).