- Published at
Social share schemes for iOS and Android 2025 / How to social share on iOS and Android 2025

Unfortunately the developers of big platforms do not advertise their deeplink schemes and you have to dig for them. Here is a list of the most common ones.
- Authors
-
-
- Name
- Joachim Bülow
- Cofounder and CTO at Doubble
-
Table of Contents
How to social share on iOS and Android 2025
Unfortunately the developers of big social platforms do not advertise their deeplink schemes and you have to dig for them. They also change them from time to time, so packages often break as they are not maintained. Easiest to just maintain the links yourself. Here is a list of the most common ones.
final openMessengerLink = (String link) => "fb-messenger://share?link=$link&app_id=3337147786552094";
final openInstagramLink = (String link) => "instagram://sharesheet?text=$link";
final openWhatsAppLink = (String link) => "whatsapp://send?text=$link";
// Snapchat is particularly restricitve - and you will have to open through their web app
final openSnapchatLink = (String link) => "https://www.snapchat.com/share?link=$link";
Using e.g. flutter you could use a library like url_launcher to open the links.
That’s all for today folks