Can anyone suggest how you can do something like a link in an application based on react-native? Specifically, you need to go to chat telegram bots.
1 answer
Found the answer.
https://facebook.imtqy.com/react-native/docs/linking.html
specifically for the telegram code is:
const url = 'http://t.me/[bot-address]'; Linking.openURL(url).catch(err => console.error('An error occurred', err)); |