@yoliani/react-native-audio-waveform
Version:
A React Native component to show audio waveform with ease in react native application
13 lines • 576 B
JavaScript
import { NativeModules, Platform } from 'react-native';
const LINKING_ERROR = "The package 'react-native-audio-waveform' doesn't seem to be linked. Make sure: \n\n" +
Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) +
'- You rebuilt the app after installing the package\n' +
'- You are not using Expo Go\n';
export const AudioWaveform = NativeModules.AudioWaveform
? NativeModules.AudioWaveform
: new Proxy({}, {
get() {
throw new Error(LINKING_ERROR);
},
});
//# sourceMappingURL=AudioWaveform.js.map