Animated.modulo()

static modulo(a, modulus) Creates a new Animated value that is the (non-negative) modulo of the provided Animated value

SliderIOS#maximumValue

maximumValue number Initial maximum value of the slider. Default value is 1.

TouchableNativeFeedback.SelectableBackgroundBorderless()

static SelectableBackgroundBorderless() Creates an object that represent android theme's default background for borderless selectable elements (?android:attr/selectableItemBackgroundBorderless). Available on android API level 21+.

SliderIOS#style

style View#style Used to style and layout the Slider. See StyleSheet.js and ViewStylePropTypes.js for more info.

JavaScript Environment

JavaScript Runtime When using React Native, you're going to be running your JavaScript code in two environments: On iOS simulators and devices, Android emulators and devices React Native uses JavaScriptCore which is the JavaScript engine that powers Safari. On iOS JSC doesn't use JIT due to the absence of writable executable memory in iOS apps. When using Chrome debugging, it runs all the JavaScript code within Chrome itself and communicates with native code via WebSocket. So you are using V8

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

ListView#renderSectionHeader

renderSectionHeader function (sectionData, sectionID) => renderable If provided, a sticky header is rendered for this section. The sticky behavior means that it will scroll with the content at the top of the section until it reaches the top of the screen, at which point it will stick to the top until it is pushed off the screen by the next section header.

ScrollView#pagingEnabled

pagingEnabled bool When true, the scroll view stops on multiples of the scroll view's size when scrolling. This can be used for horizontal pagination. The default value is false.