我使用“react-native-qrcode-svg”生成了二维码,我想通过电子邮件或类似的方式使用 react-native 的 Share 模块分享这个 svg。
import { Share } from 'react-native';
import QRCode from 'react-native-qrcode-svg';
render() {
return (
....
<QRCode
color="#090909"
value={this.props.myCode}
size={150}
/>
)
}
....
onPress = {()=>{
Share.share({
message: 'How I will send QR code image?'
title: 'QR code',
});
....
Run Code Online (Sandbox Code Playgroud)
我想我需要获取 svg 文件句柄并将其设置为共享模块,但想查看示例代码。