@gemedico/react-native-sounds
v1.0.2
Published
react-native-sounds
Downloads
9
Maintainers
Readme
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>