How to open link like viber://chat... & tg://... in React Native with standard Linking.
<TouchableOpacity onPress={() => { Linking.openURL(`viber://chat?number=0123456789`); }}>
<View style={styles.messengerBlock} >
<Image source={{ uri: 'viber' }} style={styles.messengerIcon} resizeMode={'contain'} />
<Text style={styles.messengerText}>Viber</Text>
</View>