Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.21 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.21 KB

react-native-sound-playerview

npm npm

audio player view for iOS/Android using with react-native-sound and react-navigation

Install

npm i --save git+https://github.com/lichmac/react-native-sound-playerview.git

Then install the dependencies

npm install @react-native-community/slider --save
npm install react-native-sound --save

### Step 1. Register Screen with `react-navigation`

import {StackNavigator} from 'react-navigation'; import PlayerScreen from 'react-native-sound-playerview'

...

const Navigation = StackNavigator({ ... player:{screen:PlayerScreen}, ... })

...


### Step 2. Navigate to 'react-native-sound-playerview'

this.props.navigation.navigate('player', {title:TITLE, filepath:AUDIO_FILEPATH});

*NOTE: `filepath` should be a full file path.