我想导航到默认的手机应用程序在android上点击phone_call图像如何使用react native?

kulphzqa  于 2023-05-21  发布在  Android
关注(0)|答案(1)|浏览(92)

我的第一个页面,其中包含图像点击该图像android默认拨号盘页面将打开。使用API打开电话Dialpadp。

huwehgph

huwehgph1#

import {Linking} from 'react-native'

let phoneNumber = '+911234567890'
    
Linking.openURL(`tel:${phoneNumber}`)

在链接功能的帮助下,您可以直接获得拨号盘上的号码。

相关问题