NavigatorIOS#shadowHidden

shadowHidden bool A Boolean value that indicates whether to hide the 1px hairline shadow by default

StatusBarIOS#setHidden()

setHidden(hidden, animation?)

Image.prefetch()

static prefetch(url: string) Prefetches a remote image for later use by downloading it to the disk cache

TextInput#numberOfLines

androidnumberOfLines number Sets the number of lines for a TextInput. Use it with multiline set to true to be able to fill the lines.

SegmentedControlIOS#onChange

onChange function Callback that is called when the user taps a segment; passes the event as an argument

Communication between native and React Native

In Integrating with Existing Apps guide and Native UI Components guide we learn how to embed React Native in a native component and vice versa. When we mix native and React Native components, we'll eventually find a need to communicate between these two worlds. Some ways to achieve that have been already mentioned in other guides. This article summarizes available techniques. Introduction React Native is inspired by React, so the basic idea of the information flow is similar. The flow in Reac

Image#accessibilityLabel

iosaccessibilityLabel string The text that's read by the screen reader when the user interacts with the image.

DatePickerIOS#onDateChange

onDateChange function Date change handler. This is called when the user changes the date or time in the UI. The first and only argument is a Date object representing the new date and time.

ScrollView#alwaysBounceHorizontal

iosalwaysBounceHorizontal bool When true, the scroll view bounces horizontally when it reaches the end even if the content is smaller than the scroll view itself. The default value is true when horizontal={true} and false otherwise.

NavigatorIOS#initialRoute

initialRoute {component: function, title: string, passProps: object, backButtonIcon: Image.propTypes.source, backButtonTitle: string, leftButtonIcon: Image.propTypes.source, leftButtonTitle: string, onLeftButtonPress: function, rightButtonIcon: Image.propTypes.source, rightButtonTitle: string, onRightButtonPress: function, wrapperStyle: [object Object], navigationBarHidden: bool, shadowHidden: bool, tintColor: string, barTintColor: string, titleTextColor: string, translucent: bool} NavigatorIO