ProgressBarAndroid#indeterminate

indeterminate indeterminateType If the progress bar will show indeterminate progress. Note that this can only be false if styleAttr is Horizontal.

DatePickerAndroid.dismissedAction()

static dismissedAction() The dialog has been dismissed.

ViewPagerAndroid#scrollEnabled

scrollEnabled bool When false, the content does not scroll. The default value is true.

Navigator#onDidFocus

onDidFocus function Will be called with the new route of each scene after the transition is complete or after the initial mounting

NavigatorIOS#replacePrevious()

replacePrevious(route: { component: Function; title: string; passProps?: Object; backButtonTitle?: string; backButtonIcon?: Object; leftButtonTitle?: string; leftButtonIcon?: Object; onLeftButtonPress?: Function; rightButtonTitle?: string; rightButtonIcon?: Object; onRightButtonPress?: Function; wrapperStyle?: any; }) Replace the route/view for the previous page.

Text#onLongPress

onLongPress function This function is called on long press.

DatePickerIOS#mode

mode enum('date', 'time', 'datetime') The date picker mode.

ScrollView#scrollEventThrottle

iosscrollEventThrottle number This controls how often the scroll event will be fired while scrolling (as a time interval in ms). A lower number yields better accuracy for code that is tracking the scroll position, but can lead to scroll performance problems due to the volume of information being send over the bridge. You will not notice a difference between values set between 1-16 as the JS run loop is synced to the screen refresh rate. If you do not need precise scroll position tracking, set

ToastAndroid#LONG

LONG: MemberExpression

Navigator Comparison

The differences between Navigator and NavigatorIOS are a common source of confusion for newcomers. Both Navigator and NavigatorIOS are components that allow you to manage the navigation in your app between various "scenes" (another word for screens). They manage a route stack and allow you to pop, push, and replace states. In this way, they are similar to the html5 history API. The primary distinction between the two is that NavigatorIOS leverages the iOS UINavigationController class, and Navig