SNS 공유
플러터와 SNS 간 공유하는 가이드 위젯입니다.
텍스트, URL 공유
SnsShare().shareWithSns(
title: 'Example title',
text: textValue,
url: urlValue,
chooserTitle: 'Example chooser title',
);로컬 파일 공유
FilePickerResult? result = await FilePicker.platform.pickFiles();
if (result != null) {
File file = File(result.files.single.path!);
SnsShare().shareLocalFile(
title: 'Example local file share',
path: file.toString(),
text: 'Example local file share text',
);카카오톡 피드 공유
카카오스토리 사진 포스팅
페이스북 스토리 공유
인스타그램 스토리 공유
트위터 공유
SMS 전송
클립보드 복사
Last updated