TabBarIOS.Item#onPress

onPress function Callback when this tab is being selected, you should change the state of your component to set selected={true}.

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.

TabBarIOS.Item#systemIcon

systemIcon enum('bookmarks', 'contacts', 'downloads', 'favorites', 'featured', 'history', 'more', 'most-recent', 'most-viewed', 'recents', 'search', 'top-rated') Items comes with a few predefined system icons. Note that if you are using them, the title and selectedIcon will be overridden with the system ones.

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

Animations

Fluid, meaningful animations are essential to the mobile user experience. Like everything in React Native, Animation APIs for React Native are currently under development, but have started to coalesce around two complementary systems: LayoutAnimation for animated global layout transactions, and Animated for more granular and interactive control of specific values. Animated The Animated library is designed to make it very easy to concisely express a wide variety of interesting animation and in

MapView#showsUserLocation

showsUserLocation bool If true the app will ask for the user's location and display it on the map. Default value is false. NOTE: on iOS, you need to add the NSLocationWhenInUseUsageDescription key in Info.plist to enable geolocation, otherwise it will fail silently.

MapView#active

androidactive bool

InteractionManager.clearInteractionHandle()

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