Как сделать Play Button UI?
Как сделать Play Button UI? Я использую этот модуль ( https://github.com/zmxv/react-native-sound) Что я должен вставить в файл onPress или Как воспроизвести файл advertising.mp3`?
var whoosh = new Sound('advertising.mp3', Sound.MAIN_BUNDLE
render() {
return (
<View>
<Text title="mp3 in bundle" buttonLabel={'Play'} onPress={this.props.play(whoosh)} >Play</Text>
</View >
);
}