Text#numberOfLines

numberOfLines number Used to truncate the text with an ellipsis after computing the text layout, including line wrapping, such that the total number of lines does not exceed this number.

LayoutAnimation#configChecker

configChecker: CallExpression

Native Modules

Sometimes an app needs access to a platform API that React Native doesn't have a corresponding module for yet. Maybe you want to reuse some existing Java code without having to reimplement it in JavaScript, or write some high performance, multi-threaded code such as for image processing, a database, or any number of advanced extensions. We designed React Native such that it is possible for you to write real native code and have access to the full power of the platform. This is a more advanced f

TouchableWithoutFeedback#onLayout

onLayout function Invoked on mount and layout changes with {nativeEvent: {layout: {x, y, width, height}}}

Geolocation.stopObserving()

static stopObserving()

DrawerLayoutAndroid#drawerBackgroundColor

drawerBackgroundColor color Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example: return ( <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)"> </DrawerLayoutAndroid> );

Navigator#jumpBack()

jumpBack() Jump backward without unmounting the current scene.

Flexbox#marginLeft

marginLeft number

PushNotificationIOS.getInitialNotification()

static getInitialNotification() If the app launch was triggered by a push notification, it will give the notification object, otherwise it will give null

Navigator#replacePreviousAndPop()

replacePreviousAndPop(route) Replace the previous scene and pop to it.