You can run an intent scheme (intent://) in Linking.
$ npm install react-native-intent-linking --save
$ react-native link react-native-intent-linking
import Linking from 'react-native-intent-linking';
let supported = await Linking.canOpenURL('intent://~~~');
await Linking.openURL('intent://~~~');Other functions work the same as Linking defaults.