DEV Community

cindy2306
cindy2306

Posted on

In React can I linking directly?

Help me please <3
I want to put a button to make a call without the step that user has to click on call. In another words, I want that when the user clicks the button and it binds the call directly.

CODE:

const handleCallPress = async() => {
await Linking.openURL("tel:7352120891");
}

Top comments (0)