如何制作播放按钮 UI?我正在使用这个模块 ( https://github.com/zmxv/react-native-sound ) 我应该在 onPress 或如何播放 ads.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 >
);
}