WebView#getWebViewHandle()

getWebViewHandle(): any Returns the native webview node.

TabBarIOS.Item#style

style View#style React style object.

View#needsOffscreenAlphaCompositing

androidneedsOffscreenAlphaCompositing bool Whether this view needs to rendered offscreen and composited with an alpha in order to preserve 100% correct colors and blending behavior. The default (false) falls back to drawing the component and its children with an alpha applied to the paint used to draw each element instead of rendering the full component offscreen and compositing it back with an alpha value. This default may be noticeable and undesired in the case where the View you are setti

NetInfo.isConnectionExpensive()

isConnectionExpensive Available on Android. Detect if the current active connection is metered or not. A network is classified as metered when the user is sensitive to heavy data usage on that connection due to monetary costs, data limitations or battery/performance issues. NetInfo.isConnectionExpensive() .then(isConnectionExpensive => { console.log('Connection is ' + (isConnectionExpensive ? 'Expensive' : 'Not Expensive')); }) .catch(error => { console.error(error); });

PanResponder.create()

static create(config) @param {object} config Enhanced versions of all of the responder callbacks that provide not only the typical ResponderSyntheticEvent, but also the PanResponder gesture state. Simply replace the word Responder with PanResponder in each of the typical onResponder* callbacks. For example, the config object would look like: onMoveShouldSetPanResponder: (e, gestureState) => {...} onMoveShouldSetPanResponderCapture: (e, gestureState) => {...} onStartShouldSetPanResponde

AsyncStorage.removeItem()

static removeItem(key, callback?) Returns a Promise object.

ToolbarAndroid#overflowIcon

overflowIcon optionalImageSource Sets the overflow icon.

ListViewDataSource#cloneWithRows()

cloneWithRows(dataBlob, rowIdentities) Clones this ListViewDataSource with the specified dataBlob and rowIdentities. The dataBlob is just an arbitrary blob of data. At construction an extractor to get the interesting information was defined (or the default was used). The rowIdentities is a 2D array of identifiers for rows. ie. [['a1', 'a2'], ['b1', 'b2', 'b3'], ...]. If not provided, it's assumed that the keys of the section data are the row identities. Note: This function does NOT clone the

TextInput#blurOnSubmit

blurOnSubmit bool If true, the text field will blur when submitted. The default value is true for single-line fields and false for multiline fields. Note that for multiline fields, setting blurOnSubmit to true means that pressing return will blur the field and trigger the onSubmitEditing event instead of inserting a newline into the field.

StatusBarIOS#setStyle()

setStyle(style, animated?)