Not sure if it's a javascript question or something related to Expo's Linking in React Native. I'm using:
Linking.openURL('https://www.example.com');
To direct a user to a website from the app. Is there a way to pass an attribute in the url that would trigger a popup available on the website. I've got a class of the button that triggers the popup on the website.
Thanks
You need to pass the query string with the URL and in the website, you need to check the query string, and based on the value you have to show the popup. Like this:
Linking.openURL('https://www.example.com?showModel=true');