I have a component like:
import React, { Component } from 'react' import { StyleSheet, Text, View, TouchableOpacity } from 'react-native' class MovieList extends Component { handlePress() {
Here, when I touch view , I want to play a sound. I googled about this, but did not find a suitable answer.
Is it possible to somehow reproduce the sound when I click on something? How can i do this?
source share