How to link web to the app using deep linking in React native using expo without navigation
add styles
import {Text, View, TouchableOpacity, Linking, } from 'react-native'
function App() {
return(
<View>
<TouchableOpacity onPress={() =>{Linking.openURL(url)}}>
<Text>www.example.com</Text>
</TouchableOpacity>
</View>
)}