Open baileyalo opened 2 years ago
Same here , when i click the connect button it doesnt redirect back to the app nor return a response
@Timadigwe how did you fix this issue?
It didn't work for me I used Solana mobile stack
Use Solana mobile stack or expo flow It works on expo
mmh but solana mobile stack uses Mobile Wallet Adapter(MWA) and that doesnt work with IOS!
code snipet 👍 useEffect(() => { const initializeDeeplinks = async () => { const initialUrl = await Linking.getInitialURL(); if (initialUrl) { setDeepLink(initialUrl); } }; initializeDeeplinks(); const listener = Linking.addEventListener('url', handleDeepLink); return () => { listener.remove(); }; }, []);
const handleDeepLink = ({url}: Linking.EventType) => setDeepLink(url);
// Handle in-bound links useEffect(() => { if (!deepLink) { return; }