'How can I implement webview background audio play on Vimeo in react native?

Now I can play videos from vimeo in react-native.

import WebView from 'react-native-autoheight-webview';

<WebView
allowsFullscreenVideo
scrollEnabled={false}
automaticallyAdjustContentInsets
source={{
  html: `
    <html>
      <body>
        <iframe src="URL"></iframe>
        <script src="https://player.vimeo.com/api/player.js"></script>
      </body>
    </html>
        `
  }}
/>

I want to add background audio play function.
How can I do that?

Please give me any help.
Thank you.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source