공식 도큐먼트에서 제공하는 내용이다.
일반적으로 보는 공유화면과 동일함.
공식문서
예시 코드
import React from 'react'; import { Share, View, Button } from 'react-native'; const ShareExample = () => { const onShare = async () => { try { const result = await Share.share({ message: 'React Native | A framework for building native apps using React', }); if (result.action === Share.sharedAction) { if (result.activityType) { // shared with activity type of result.activityType } else { // shared } } else if (result.action === Share.dismissedAction) { // dismissed } } catch (error) { alert(error.message); } }; return ( <View style={{ marginTop: 50 }}> <Button onPress={onShare} title="Share" /> </View> ); }; export default ShareExample;