1

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.

enter image description here

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?

1 Answers1

0

You can use these packages;

Fatih Mert Doğancan
  • 1,016
  • 14
  • 21