Phone Calls Using PowerApps Launch
one of Client wanted to show the Phone Icon and by clicking on it, it should Launch the Call in Power Apps. There is direct option in Power Apps to open the call screen using Launch Function.
Using Launch function as below, PowerApp will call the number.
Launch("tel:1234567890")
In the above function, PowerApps will call the number.
This function is working for the most of the devices. But iPhone 7 is not working as expected. By clicking on the icon, it just opening the Safari browser and doing nothing. After investigation, i found the resolution for iPhone 7 using the function below.
Launch("tel:1234567890").
Hope this helps.
Comments