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',

AlertIOS.prompt()

static prompt(title, message?, callbackOrButtons?, type?, defaultValue?) Prompt the user to enter some text. title: string -- The dialog's title. message: string -- An optional message that appears above the text input. callbackOrButtons -- This optional argument should be either a single-argument function or an array of buttons. If passed a function, it will be called with the prompt's value when the user taps 'OK'. If passed an array of button configurations, each button should include a

ScrollView#scrollEnabled

scrollEnabled bool When false, the content does not scroll. The default value is true.

SliderIOS#minimumTrackTintColor

minimumTrackTintColor string The color used for the track to the left of the button. Overrides the default blue gradient image.

SliderIOS#maximumTrackImage

maximumTrackImage Image.propTypes.source Assigns a maximum track image. Only static images are supported. The leftmost pixel of the image will be stretched to fill the track.

ActivityIndicator#animating

animating bool Whether to show the indicator (true, the default) or hide it (false).

IntentAndroid.canOpenURL()

static canOpenURL(url, callback) Determine whether or not an installed app can handle a given URL. You can use other URLs, like a location (e.g. "geo:37.484847,-122.148386"), a contact, or any other URL that can be opened with {@code Intent.ACTION_VIEW}. NOTE: For web URLs, the protocol ("http://", "https://") must be set accordingly! @param URL the URL to open @deprecated

TabBarIOS#translucent

translucent bool A Boolean value that indicates whether the tab bar is translucent

Flexbox#marginVertical

marginVertical number

RefreshControl#enabled

androidenabled bool Whether the pull to refresh functionality is enabled.