I have number of URLs which getting from server response. And I have to display that in Flatlist, There are number of links. Each Flatlist, I have to show some data and then bottom of the cell needs to show player with progress bar.
import Sound from 'react-native-sound';
const sound = new Sound('http://sounds.com/some-sound', null, (error) => {
if (error) {
// do something
}
// play when loaded
sound.play();
});
Any suggestions?