Skip to content

Commit a6a9415

Browse files
Merge pull request #18 from SimformSolutionsPvtLtd/develop
Release 1.0.0
2 parents 6fba218 + b1f7cac commit a6a9415

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# react-native-audio-waveform
55

6-
[![react-native-audio-waveform on npm](https://img.shields.io/npm/v/react-native-audio-waveform.svg?&logo=npm&logoColor=white&color=red&labelColor=grey&cacheSeconds=3600&maxAge=86400)](https://www.npmjs.com/package/react-native-audio-waveform) [![react-native-audio-waveform downloads](https://img.shields.io/npm/dm/react-native-audio-waveform?&logo=npm&logoColor=white&color=blue&labelColor=grey&cacheSeconds=3600&maxAge=86400)](https://www.npmtrends.com/react-native-audio-waveform) [![react-native-audio-waveform install size](https://packagephobia.com/badge?p=react-native-audio-waveform?&icon=disk&logoColor=white&color=yellow&labelColor=grey&cacheSeconds=3600&maxAge=86400)](https://packagephobia.com/result?p=react-native-audio-waveform) [![Android](https://img.shields.io/badge/Platform-Android-green?logo=android&logoColor=white&labelColor=grey)](https://www.android.com) [![iOS](https://img.shields.io/badge/Platform-iOS-green?logo=apple&logoColor=white&labelColor=grey)](https://developer.apple.com/ios) [![MIT](https://img.shields.io/badge/License-MIT-green&labelColor=grey)](https://opensource.org/licenses/MIT)
6+
[![react-native-audio-waveform on npm](https://img.shields.io/npm/v/@simform_solutions/react-native-audio-waveform.svg?&logo=npm&logoColor=white&color=red&labelColor=grey&cacheSeconds=3600&maxAge=86400)](https://www.npmjs.com/package/@simform_solutions/react-native-audio-waveform) [![react-native-audio-waveform downloads](https://img.shields.io/npm/dm/@simform_solutions/react-native-audio-waveform?&logo=npm&logoColor=white&color=blue&labelColor=grey&cacheSeconds=3600&maxAge=86400)](https://www.npmtrends.com/@simform_solutions/react-native-audio-waveform) [![react-native-audio-waveform install size](https://packagephobia.com/badge?p=@simform_solutions/react-native-audio-waveform?&icon=disk&logoColor=white&color=yellow&labelColor=grey&cacheSeconds=3600&maxAge=86400)](https://packagephobia.com/result?p=@simform_solutions/react-native-audio-waveform) [![Android](https://img.shields.io/badge/Platform-Android-green?logo=android&logoColor=white&labelColor=grey)](https://www.android.com) [![iOS](https://img.shields.io/badge/Platform-iOS-green?logo=apple&logoColor=white&labelColor=grey)](https://developer.apple.com/ios) [![MIT](https://img.shields.io/badge/License-MIT-green&labelColor=grey)](https://opensource.org/licenses/MIT)
77

88
---
99

@@ -34,13 +34,13 @@ Here's how to get started with react-native-audio-waveform in your React Native
3434
##### 1. Install the package
3535

3636
```sh
37-
npm install react-native-audio-waveform react-native-gesture-handler
37+
npm install @simform_solutions/react-native-audio-waveform react-native-gesture-handler
3838
```
3939

4040
###### --- or ---
4141

4242
```sh
43-
yarn add react-native-audio-waveform react-native-gesture-handler
43+
yarn add @simform_solutions/react-native-audio-waveform react-native-gesture-handler
4444
```
4545

4646
##### 2. Install CocoaPods in the iOS project
@@ -81,7 +81,7 @@ When you want to show a waveform for a pre-existing audio file, you need to use
8181
Check the example below for more information.
8282

8383
```tsx
84-
import { Waveform, type IWaveformRef } from 'react-native-audio-waveform';
84+
import { Waveform, type IWaveformRef } from '@simform_solutions/react-native-audio-waveform';
8585

8686
const path = ''; // path to the audio file for which you want to show waveform
8787
const ref = useRef<IWaveformRef>(null);
@@ -104,7 +104,7 @@ When you want to record audio and show a waveform for that recording, you need t
104104
Check the example below for more information.
105105

106106
```tsx
107-
import { Waveform, type IWaveformRef } from 'react-native-audio-waveform';
107+
import { Waveform, type IWaveformRef } from '@simform_solutions/react-native-audio-waveform';
108108

109109
const ref = useRef<IWaveformRef>(null);
110110
<Waveform

example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
UpdateFrequency,
2424
Waveform,
2525
useAudioPermission,
26-
} from 'react-native-audio-waveform';
26+
} from '@simform_solutions/react-native-audio-waveform';
2727
import { GestureHandlerRootView } from 'react-native-gesture-handler';
2828
import {
2929
SafeAreaProvider,

example/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"module": "CommonJS",
88
"noEmit": true,
99
"paths": {
10-
"react-native-audio-waveform": ["../src"]
10+
"@simform_solutions/react-native-audio-waveform": ["../src"]
1111
},
1212
"declaration": true,
1313
"allowUnreachableCode": false,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "react-native-audio-waveform",
2+
"name": "@simform_solutions/react-native-audio-waveform",
33
"version": "1.0.0",
44
"description": "A React Native component to show audio waveform with ease in react native application",
55
"main": "lib/index",

0 commit comments

Comments
 (0)