TextInput#secureTextEntry

secureTextEntry bool If true, the text input obscures the text entered so that sensitive text like passwords stay secure. The default value is false.

Clipboard.setString()

static setString(content) Set content of string type. You can use following code to set clipboard content _setContent() { Clipboard.setString('hello world'); } @param the content to be stored in the clipboard.

ScrollView#canCancelContentTouches

ioscanCancelContentTouches bool When false, once tracking starts, won't try to drag if the touch moves. The default value is true.

Animated#setValue()

setValue(value) Directly set the value. This will stop any animations running on the value and update all the bound properties.

Navigator#popToRoute()

popToRoute(route) Pop to a particular scene, as specified by its route. All scenes after it will be unmounted.

View#onResponderMove

onResponderMove function

View#accessibilityLabel

accessibilityLabel string Overrides the text that's read by the screen reader when the user interacts with the element. By default, the label is constructed by traversing all the children and accumulating all the Text nodes separated by space.

PushNotificationIOS.scheduleLocalNotification()

static scheduleLocalNotification(details) Schedules the localNotification for future presentation. details is an object containing: fireDate : The date and time when the system should deliver the notification. alertBody : The message displayed in the notification alert. alertAction : The "action" displayed beneath an actionable notification. Defaults to "view"; soundName : The sound played when the notification is fired (optional). category : The category of this notification, required

AsyncStorage.mergeItem()

static mergeItem(key, value, callback?) Merges existing value with input value, assuming they are stringified json. Returns a Promise object. Not supported by all native implementations. Example: let UID123_object = { name: 'Chris', age: 30, traits: {hair: 'brown', eyes: 'brown'}, }; // need only define what will be added or updated let UID123_delta = { age: 31, traits: {eyes: 'blue', shoe_size: 10} }; AsyncStorage.setItem('UID123', JSON.stringify(UID123_object), () => { AsyncSto

Navigator#replace()

replace(route) Replace the current scene with a new route.