I want my react-native app to share a photo with Instagram. I know it\'s possible when writing in native code to open up Instagram\'s filter screen with a specified photo.
Worked For Me :)
onClick = () => { ImagePicker.launchImageLibrary(options, response =>{ console.log(response); let instagramURL = `instagram://library?LocalIdentifier=`+response.origURL; Linking.openURL(instagramURL); })