audio player view for iOS/Android using with react-native-sound and react-navigation
$ npm install react-native-sound-playerview
import {StackNavigator} from 'react-navigation';
import PlayerScreen from 'react-native-sound-playerview'
...
const Navigation = StackNavigator({
...
player:{screen:PlayerScreen},
...
})
...
this.props.navigation.navigate('player', {title:__TITLE__, filepath:__AUDIO_FILEPATH__});
*NOTE: filepath
should be a full file path.