CapacitorJS Share API 사용하기: 쉽게 앱 내 공유 기능 구현!
#Share 공식문서 : https://capacitorjs.com/docs/apis/share
npm install @capacitor/share
npx cap sync
import { Share } from '@capacitor/share';
await Share.share({
title: 'See cool stuff',
text: 'Really awesome thing you need to see right meow',
url: 'http://ionicframework.com/',
dialogTitle: 'Share with buddies',
});