View#onResponderMove

onResponderMove function

ListView#renderRow

renderRow function (rowData, sectionID, rowID, highlightRow) => renderable Takes a data entry from the data source and its ids and should return a renderable component to be rendered as the row. By default the data is exactly what was put into the data source, but it's also possible to provide custom extractors. ListView can be notified when a row is being highlighted by calling highlightRow(sectionID, rowID). This sets a boolean value of adjacentRowHighlighted in renderSeparator, allowing

NavigatorIOS#itemWrapperStyle

itemWrapperStyle View#style The default wrapper style for components in the navigator. A common use case is to set the backgroundColor for every page

DrawerLayoutAndroid#onDrawerOpen

onDrawerOpen function Function called whenever the navigation view has been opened.

NavigatorIOS#popToTop()

popToTop() Go back to the top item

ListViewDataSource#getRowData()

getRowData(sectionIndex, rowIndex) Gets the data required to render the row.

Navigator#jumpForward()

jumpForward() Jump forward to the next scene in the route stack.

PushNotificationIOS.getApplicationIconBadgeNumber()

static getApplicationIconBadgeNumber(callback) Gets the current badge number for the app icon on the home screen

ViewPagerAndroid#onPageScrollStateChanged

onPageScrollStateChanged function Function called when the page scrolling state has changed. The page scrolling state can be in 3 states: - idle, meaning there is no interaction with the page scroller happening at the time - dragging, meaning there is currently an interaction with the page scroller - settling, meaning that there was an interaction with the page scroller, and the page scroller is now finishing it's closing or opening animation

StyleSheet#flatten

flatten: CallExpression Flattens an array of style objects, into one aggregated style object. Alternatively, this method can be used to lookup IDs, returned by StyleSheet.register. NOTE: Exercise caution as abusing this can tax you in terms of optimizations. IDs enable optimizations through the bridge and memory in general. Refering to style objects directly will deprive you of these optimizations. Example: var styles = StyleSheet.create({ listItem: { flex: 1, fontSize: 16, co