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.

ViewPagerAndroid#onPageScroll

onPageScroll function Executed when transitioning between pages (ether because of animation for the requested page change or when user is swiping/dragging between pages) The event.nativeEvent object for this callback will carry following data: - position - index of first page from the left that is currently visible - offset - value from range [0,1) describing stage between page transitions. Value x means that (1 - x) fraction of the page at "position" index is visible, and x fraction of the ne

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

NativeMethodsMixin.blur()

static blur() Removes focus from an input or view. This is the opposite of focus().

MapView#showsCompass

iosshowsCompass bool If false compass won't be displayed on the map. Default value is true.

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.

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.

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.

ListViewDataSource#constructor()

constructor(params) You can provide custom extraction and hasChanged functions for section headers and rows. If absent, data will be extracted with the defaultGetRowData and defaultGetSectionHeaderData functions. The default extractor expects data of one of the following forms: { sectionID_1: { rowID_1: <rowData1>, ... }, ... } or { sectionID_1: [ <rowData1>, <rowData2>, ... ], ... } or [ [ <rowData1>, <rowData2>, ... ], ... ] The constructor takes in a para