audio player view for iOS/Android using with react-native-sound and react-navigation
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.