NOTE: VibrationIOS is being deprecated. Use Vibration instead.

The Vibration API is exposed at VibrationIOS.vibrate(). On iOS, calling this function will trigger a one second vibration. The vibration is asynchronous so this method will return immediately.

There will be no effect on devices that do not support Vibration, eg. the iOS simulator.

Vibration patterns are currently unsupported.

Methods

static vibrate()

@deprecated

Examples

'use strict';

var React = require('react');
var ReactNative = require('react-native');
var {
  StyleSheet,
  View,
  Text,
  TouchableHighlight,
  VibrationIOS
} = ReactNative;

exports.framework = 'React';
exports.title = 'VibrationIOS';
exports.description = 'Vibration API for iOS';
exports.examples = [{
  title: 'VibrationIOS.vibrate()',
  render() {
    return (
      <TouchableHighlight
        style={styles.wrapper}
        onPress={() => VibrationIOS.vibrate()}>
        <View style={styles.button}>
          <Text>Vibrate</Text>
        </View>
      </TouchableHighlight>
    );
  },
}];

var styles = StyleSheet.create({
  wrapper: {
    borderRadius: 5,
    marginBottom: 5,
  },
  button: {
    backgroundColor: '#eeeeee',
    padding: 10,
  },
});
StatusBarIOS#setNetworkActivityIndicatorVisible()
  • References/JavaScript/React Native/APIs

setNetworkActivityIndicatorVisible(visible)

2025-01-10 15:47:30
ToastAndroid#SHORT
  • References/JavaScript/React Native/APIs

SHORT: MemberExpression

2025-01-10 15:47:30
NativeMethodsMixin.focus()
  • References/JavaScript/React Native/APIs

static focus() Requests focus for the given input or view. The exact behavior

2025-01-10 15:47:30
NativeMethodsMixin.blur()
  • References/JavaScript/React Native/APIs

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

2025-01-10 15:47:30
AsyncStorage.multiGet()
  • References/JavaScript/React Native/APIs

static multiGet(keys, callback?) multiGet invokes callback with an array

2025-01-10 15:47:30
NetInfo.removeEventListener()
  • References/JavaScript/React Native/APIs

static removeEventListener(eventName, handler) Removes the listener for network

2025-01-10 15:47:30
AsyncStorage.getAllKeys()
  • References/JavaScript/React Native/APIs

static getAllKeys(callback?) Gets all keys known to the app, for

2025-01-10 15:47:30
AppState#addEventListener()
  • References/JavaScript/React Native/APIs

addEventListener(type, handler) Add a handler to AppState changes by listening to the change

2025-01-10 15:47:30
AsyncStorage.clear()
  • References/JavaScript/React Native/APIs

static clear(callback?) Erases all AsyncStorage for all clients

2025-01-10 15:47:30