'React Native Share sheet icon
How do you change the icon used in iOS share sheet for React Native Apps? Im using the Share function provided by React Native, I dont wish to use another dependency such as react-native-share. One related question the provided answer was to update the favicon, how does one do this? Is this feature also available for sharing in Android or is this image exclusive to the Share sheet on iOS?
import { Share as RNShare } from 'react-native';
const share = (link: string) => {
return RNShare.share(
{
message: link,
url: 'base64code',
title: `test`,
},
{
dialogTitle: 'Test',
},
);
};
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
