ScrollView#minimumZoomScale

iosminimumZoomScale number The minimum allowed zoom scale. The default value is 1.0.

PushNotificationIOS.setApplicationIconBadgeNumber()

static setApplicationIconBadgeNumber(number) Sets the badge number for the app icon on the home screen

AsyncStorage.multiMerge()

static multiMerge(keyValuePairs, callback?) Merges existing values with input values, assuming they are stringified json. Returns a Promise object. Not supported by all native implementations. Example: // first user, initial values let UID234_object = { name: 'Chris', age: 30, traits: {hair: 'brown', eyes: 'brown'}, }; // first user, delta values let UID234_delta = { age: 31, traits: {eyes: 'blue', shoe_size: 10}, }; // second user, initial values let UID345_object = { name: 'Marge',

TextInput#value

value string The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to simply setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

Slider#minimumValue

minimumValue number Initial minimum value of the slider. Default value is 0.

ShadowPropTypesIOS#shadowOffset

shadowOffset {width: number, height: number}

Text#accessible

accessible

ActionSheetIOS.showShareActionSheetWithOptions()

static showShareActionSheetWithOptions(options, failureCallback, successCallback) Display the iOS share sheet. The options object should contain one or both of message and url and can additionally have a subject or excludedActivityTypes: url (string) - a URL to share message (string) - a message to share subject (string) - a subject for the message excludedActivityTypes (array) - the activites to exclude from the ActionSheet NOTE: if url points to a local file, or is a base64-encoded uri

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

NativeMethodsMixin.measureInWindow()

static measureInWindow(callback) Determines the location of the given view in the window and returns the values via an async callback. If the React root view is embedded in another native view, this will give you the absolute coordinates. If successful, the callback will be called with the following arguments: x y width height Note that these measurements are not available until after the rendering has been completed in native.