TextInput#multiline

multiline bool If true, the text input can be multiple lines. The default value is false.

ProgressBarAndroid#styleAttr

styleAttr STYLE_ATTRIBUTES Style of the ProgressBar. One of: Horizontal Normal (default) Small Large Inverse SmallInverse LargeInverse

AsyncStorage.multiSet()

static multiSet(keyValuePairs, callback?) multiSet and multiMerge take arrays of key-value array pairs that match the output of multiGet, e.g. Returns a Promise object. multiSet([['k1', 'val1'], ['k2', 'val2']], cb); Example: see multiMerge for an example

ScrollView#scrollPerfTag

androidscrollPerfTag string Tag used to log scroll performance on this scroll view. Will force momentum events to be turned on (see sendMomentumEvents). This doesn't do anything out of the box and you need to implement a custom native FpsListener for it to be useful.

Dimensions.set()

static set(dims) This should only be called from native code by sending the didUpdateDimensions event. @param {object} dims Simple string-keyed object of dimensions to set

InteractionManager#addListener

addListener: CallExpression

TabBarIOS.Item#title

title string Text that appears under the icon. It is ignored when a system icon is defined.

ScrollView#stickyHeaderIndices

iosstickyHeaderIndices [number] An array of child indices determining which children get docked to the top of the screen when scrolling. For example, passing stickyHeaderIndices={[0]} will cause the first child to be fixed to the top of the scroll view. This property is not supported in conjunction with horizontal={true}.

StatusBar.setBarStyle()

static setBarStyle(style: 'default' | 'light-content', animated: boolean)

View#collapsable

androidcollapsable bool Views that are only used to layout their children or otherwise don't draw anything may be automatically removed from the native hierarchy as an optimization. Set this property to false to disable this optimization and ensure that this View exists in the native view hierarchy.