1. install react-native-phone-call package using npm
$ npm install --save react-native-phone-call
2. 创建一个名为 makCall ()的方法
makeCall = (number) => {
const args = {
number: number, // String value with the number to call
prompt: true // Optional boolean property. Determines if the user should be prompt prior to the call
}
call(args).catch(console.error)
}