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

WebView#getWebViewHandle()

getWebViewHandle(): any Returns the native webview node.

TabBarIOS.Item#style

style View#style React style object.

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.

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

WebView#onLoadEnd

onLoadEnd function Invoked when load either succeeds or fails

AppRegistry.getAppKeys()

static getAppKeys()

Navigator#configureScene

configureScene function Optional function that allows configuration about scene animations and gestures. Will be invoked with the route and the routeStack and should return a scene configuration object (route, routeStack) => Navigator.SceneConfigs.FloatFromRight Available options are: Navigator.SceneConfigs.PushFromRight (default) Navigator.SceneConfigs.FloatFromRight Navigator.SceneConfigs.FloatFromLeft Navigator.SceneConfigs.FloatFromBottom Navigator.SceneConfigs.FloatFromBottomAndroid N

DatePickerIOS#maximumDate

maximumDate Date Maximum date. Restricts the range of possible date/time values.

ScrollView#bounces

iosbounces bool When true, the scroll view bounces when it reaches the end of the content if the content is larger then the scroll view along the axis of the scroll direction. When false, it disables all bouncing even if the alwaysBounce* props are true. The default value is true.