How do I open another app from ReactNative?
How to open other apps (Gmail, Camera) from ReactNative. How can I transfer data from the current scene to another application?
+3
Akashsingla19
source
to share
2 answers
you can launch other apps using Linking
0
Ahmed Ali
source
to share
Sample code to open dialer
const urlToOpen = 'tel:1234567890';
Linking.openURL(urlToOpen);
You can refer to the official doc here , it just predefines some applications that can be opened.
However, if the question is about to open for almost any application, I hope there is still no solution.
0
saumya
source
to share