An Very Lite Module to Play System Sounds And Beep for React Native Apps

React-Native Sounds

An very lite module to play system sounds and beep for react-native apps (no sound files)

Installation

This is a Node.js module available through the npm registry.

$ npm install @gemedico/react-native-sounds

Mostly automatic installation

$ react-native link @gemedico/react-native-sounds

IOS

$ cd ios
$ pod install

Usage

import RNSounds from '@gemedico/react-native-sounds';

Examples:

<Button onPress={ () => {RNSounds.beep()} } title="Beep Success"></Button>
<Button onPress={ () => {RNSounds.beep(false)} } title="Beep Fail"></Button>
<Button onPress={ () => {RNSounds.PlaySysSound(RNSounds.AndroidSoundIDs.TONE_CDMA_ABBR_ALERT)} } title="Beep Android Custom"></Button>
<Button onPress={ () => {RNSounds.PlaySysSound(41)} } title="Beep Something"></Button>
<Button onPress={ () => {RNSounds.PlaySysSound(RNSounds.iOSSoundIDs.AudioToneBusy)} } title="Beep iOS Custom"></Button>

Download Details:

Author: Gemedico

Source Code: https://github.com/Gemedico/react-native-sounds

#react #react-native #mobile-apps

An Very Lite Module to Play System Sounds And Beep for React Native Apps
8.05 GEEK