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.

SliderIOS#minimumTrackTintColor

minimumTrackTintColor string The color used for the track to the left of the button. Overrides the default blue gradient image.

ScrollView#contentContainerStyle

contentContainerStyle StyleSheetPropType(ViewStylePropTypes) These styles will be applied to the scroll view content container which wraps all of the child views. Example: return ( <ScrollView contentContainerStyle={styles.contentContainer}> </ScrollView> ); ... const styles = StyleSheet.create({ contentContainer: { paddingVertical: 20 } });

MapView#zoomEnabled

zoomEnabled bool If false the user won't be able to pinch/zoom the map. Default value is true.

ScrollView#scrollEnabled

scrollEnabled bool When false, the content does not scroll. The default value is true.

SliderIOS#maximumValue

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

AlertIOS.prompt()

static prompt(title, message?, callbackOrButtons?, type?, defaultValue?) Prompt the user to enter some text. title: string -- The dialog's title. message: string -- An optional message that appears above the text input. callbackOrButtons -- This optional argument should be either a single-argument function or an array of buttons. If passed a function, it will be called with the prompt's value when the user taps 'OK'. If passed an array of button configurations, each button should include a

AlertIOS.alert()

static alert(title, message?, callbackOrButtons?, type?) Creates a popup to alert the user. See Alert. title: string -- The dialog's title. message: string -- An optional message that appears above the text input. callbackOrButtons -- This optional argument should be either a single-argument function or an array of buttons. If passed a function, it will be called when the user taps 'OK'. If passed an array of button configurations, each button should include a text key, as well as optional

NetInfo.addEventListener()

static addEventListener(eventName, handler) Invokes the listener whenever network status changes. The listener receives one of the connectivity types listed above.

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.