Skip to content

Flutter Plugin for sharing contents to particular social media app or all.

License

Notifications You must be signed in to change notification settings

tarunkhatri/custom_social_share

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

custom_social_share

Flutter plugin for sharing text content to most popular social media apps.

You can use it to copy to clipboard, share with WhatsApp, Facebook, Messenger, Instagram, Reddit, Skype, Snapchat, Telegram, Twitter and other social media apps and also with System Share UI.

Note: This plugin is still under development, and some APIs might not be available yet. Feedback and Pull Requests are most welcome!

Getting Started

add custom_social_share as a dependency in your pubspec.yaml file.

Please use the latest version of package

dependencies:
  ...
  
  custom_social_share:
      git:
        url: https://github.com/tarunkhatri/custom_social_share.git
        ref: master

Setup

Android

There is nothing to set up in android.

iOS

Make sure you add below value in url scheme in your plist file

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>fb</string>
    <string>fb-messenger</string>
    <string>instagram</string>
    <string>line</string>
    <string>linkedin</string>
    <string>reddit</string>
    <string>skype</string>
    <string>slack</string>
    <string>snapchat</string>
    <string>tg</string>
    <string>twitter</string>
    <string>viber</string>
    <string>wechat</string>
    <string>whatsapp</string>
</array>

If you are planning use only WhatsApp, then only add whatsapp url scheme and same for other apps also.

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>whatsapp</string>
</array>

Usage

Add the following imports to your Dart code:

import 'package:custom_social_share/custom_social_share.dart';

Methods

Copy to clipboard

CustomSocialShare().copy("Hii from new plugin https://www.google.com with link");

Open system share UI

CustomSocialShare().toAll("Hii from new plugin https://www.google.com with link");

Get installed social apps for share

var List<ShareWith> = await CustomSocialShare().getInstalledAppsForShare();

To social apps

// to sms
CustomSocialShare().to(ShareWith.sms, "Hii from new plugin https://www.google.com with link");

// to email
CustomSocialShare().to(ShareWith.email, "Hii from new plugin https://www.google.com with link");

// to WhatsApp
CustomSocialShare().to(ShareWith.whatsapp, "Hii from new plugin https://www.google.com with link");

To custom app (Android Only)

// to custom app package
CustomSocialShare().customApp('com.google.android.apps.dynamite', "Hii from new plugin https://www.google.com with link");

These methods will return true if they successfully open to the corresponding app otherwise false.

About

Flutter Plugin for sharing contents to particular social media app or all.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 37.8%
  • Swift 28.2%
  • Kotlin 26.4%
  • Ruby 4.3%
  • Objective-C 3.3%