Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 14,688 Bytes
2f88b0d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
[](https://flutter.dev/docs/development/packages-and-plugins/favorites "Package is a Flutter Favorite")
share\_plus 11.0.0 
share\_plus: ^11.0.0 copied to clipboard
====================================================================================================================================================================================================
Published 15 days ago β’ [fluttercommunity.dev](/publishers/fluttercommunity.dev)Dart 3 compatible
SDK[Flutter](/packages?q=sdk%3Aflutter "Packages compatible with Flutter SDK")
Platform[Android](/packages?q=platform%3Aandroid "Packages compatible with Android platform")[iOS](/packages?q=platform%3Aios "Packages compatible with iOS platform")[Linux](/packages?q=platform%3Alinux "Packages compatible with Linux platform")[macOS](/packages?q=platform%3Amacos "Packages compatible with macOS platform")[web](/packages?q=platform%3Aweb "Packages compatible with Web platform")[Windows](/packages?q=platform%3Awindows "Packages compatible with Windows platform")
3.6k
β
### Metadata
Flutter plugin for sharing content via the platform share UI, using the ACTION\_SEND intent on Android and UIActivityViewController on iOS.
More...
* Readme
* [Changelog](/packages/share_plus/changelog)
* [Example](/packages/share_plus/example)
* [Installing](/packages/share_plus/install)
* [Versions](/packages/share_plus/versions)
* [Scores](/packages/share_plus/score)
share\_plus [#](#share_plus)
============================
[](https://github.com/fluttercommunity/plus_plugins/actions/workflows/share_plus.yaml) [](https://pub.dev/packages/share_plus/score) [](https://pub.dev/packages/share_plus)
[](https://flutter.dev/docs/development/packages-and-plugins/favorites)
A Flutter plugin to share content from your Flutter app via the platform's share dialog.
Wraps the `ACTION_SEND` Intent on Android, `UIActivityViewController` on iOS, or equivalent platform content sharing methods.
Platform Support [#](#platform-support)
---------------------------------------
Shared content
Android
iOS
MacOS
Web
Linux
Windows
Text
β
β
β
β
β
β
URI
β
β
β
As text
As text
As text
Files
β
β
β
β
β
β
Also compatible with Windows and Linux by using "mailto" to share text via Email.
Sharing files is not supported on Linux.
Requirements [#](#requirements)
-------------------------------
* Flutter >=3.22.0
* Dart >=3.4.0 <4.0.0
* iOS >=12.0
* MacOS >=10.14
* Android `compileSDK` 34
* Java 17
* Android Gradle Plugin >=8.3.0
* Gradle wrapper >=8.4
Usage [#](#usage)
-----------------
To use this plugin, add `share_plus` as a [dependency in your pubspec.yaml file](https://plus.fluttercommunity.dev/docs/overview).
Import the library.
import 'package:share_plus/share_plus.dart';
copied to clipboard
### Share Text [#](#share-text)
Access the `SharePlus` instance via `SharePlus.instance`. Then, invoke the `share()` method anywhere in your Dart code.
SharePlus.instance.share(
ShareParams(text: 'check out my website https://example.com')
);
copied to clipboard
The `share()` method requires the `ShareParams` object, which contains the content to share.
These are some of the accepted parameters of the `ShareParams` class:
* `text`: text to share.
* `title`: content or share-sheet title (if supported).
* `subject`: email subject (if supported).
Check the class documentation for more details.
`share()` returns `status` object that allows to check the result of user action in the share sheet.
final result = await SharePlus.instance.share(params);
if (result.status == ShareResultStatus.success) {
print('Thank you for sharing my website!');
}
copied to clipboard
### Share Files [#](#share-files)
To share one or multiple files, provide the `files` list in `ShareParams`. Optionally, you can pass `title`, `text` and `sharePositionOrigin`.
final params = ShareParams(
text: 'Great picture',
files: [XFile('${directory.path}/image.jpg')],
);
final result = await SharePlus.instance.share(params);
if (result.status == ShareResultStatus.success) {
print('Thank you for sharing the picture!');
}
copied to clipboard
final params = ShareParams(
files: [
XFile('${directory.path}/image1.jpg'),
XFile('${directory.path}/image2.jpg'),
],
);
final result = await SharePlus.instance.share(params);
if (result.status == ShareResultStatus.dismissed) {
print('Did you not like the pictures?');
}
copied to clipboard
On web, this uses the [Web Share API](https://web.dev/web-share/) if it's available. Otherwise it falls back to downloading the shared files. See [Can I Use - Web Share API](https://caniuse.com/web-share) to understand which browsers are supported. This builds on the [`cross_file`](https://pub.dev/packages/cross_file) package.
File downloading fallback mechanism for web can be disabled by setting:
ShareParams(
// rest of params
downloadFallbackEnabled: false,
)
copied to clipboard
#### Share Data
You can also share files that you dynamically generate from its data using [`XFile.fromData`](https://pub.dev/documentation/share_plus/latest/share_plus/XFile/XFile.fromData.html).
To set the name of such files, use the `fileNameOverrides` parameter, otherwise the file name will be a random UUID string.
final params = ShareParams(
files: [XFile.fromData(utf8.encode(text), mimeType: 'text/plain')],
fileNameOverrides: ['myfile.txt']
);
SharePlus.instance.share(params);
copied to clipboard
Caution
The `name` parameter in the `XFile.fromData` method is ignored in most platforms. Use `fileNameOverrides` instead.
### Share URI [#](#share-uri)
iOS supports fetching metadata from a URI when shared using `UIActivityViewController`. This special functionality is only properly supported on iOS. On other platforms, the URI will be shared as plain text.
final params = ShareParams(uri: uri);
SharePlus.instance.share(params);
copied to clipboard
### Share Results [#](#share-results)
All three methods return a `ShareResult` object which contains the following information:
* `status`: a `ShareResultStatus`
* `raw`: a `String` describing the share result, e.g. the opening app ID.
Note: `status` will be `ShareResultStatus.unavailable` if the platform does not support identifying the user action.
Known Issues [#](#known-issues)
-------------------------------
### Sharing data created with XFile.fromData [#](#sharing-data-created-with-xfilefromdata)
When sharing data created with `XFile.fromData`, the plugin will write a temporal file inside the cache directory of the app, so it can be shared.
Although the OS should take care of deleting those files, it is advised, that you clean up this data once in a while (e.g. on app start).
You can access this directory using [path\_provider](https://pub.dev/packages/path_provider) [getTemporaryDirectory](https://pub.dev/documentation/path_provider/latest/path_provider/getTemporaryDirectory.html).
Alternatively, don't use `XFile.fromData` and instead write the data down to a `File` with a path before sharing it, so you control when to delete it.
### Mobile platforms (Android and iOS) [#](#mobile-platforms-android-and-ios)
#### Sharing images + text
When attempting to share images with text, some apps may fail to properly accept the share action with them.
For example, due to restrictions set up by Meta/Facebook this plugin isn't capable of sharing data reliably to Facebook related apps on Android and iOS. This includes eg. sharing text to the Facebook Messenger.
If you require this functionality please check the native Facebook Sharing SDK ([https://developers.facebook.com/docs/sharing](https://developers.facebook.com/docs/sharing)) or search for other Flutter plugins implementing this SDK. More information can be found in [this issue](https://github.com/fluttercommunity/plus_plugins/issues/413).
Other apps may also give problems when attempting to share content to them. This is because 3rd party app developers do not properly implement the logic to receive share actions.
We cannot warranty that a 3rd party app will properly implement the share functionality. Therefore, **all bugs reported regarding compatibility with a specific app will be closed.**
#### Localization in Apple platforms
It could happen that the Share sheet appears with a different language, [as reported here](https://github.com/fluttercommunity/plus_plugins/issues/2696).
To fix this issue, you will have to setup the keys `CFBundleAllowMixedLocalizations` and `CFBundleDevelopmentRegion` in your project's `info.plist`.
For more information check the [CoreFoundationKeys](https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html) documentation.
#### iPad
`share_plus` requires iPad users to provide the `sharePositionOrigin` parameter.
Without it, `share_plus` will not work on iPads and may cause a crash or letting the UI not responding.
To avoid that problem, provide the `sharePositionOrigin`.
For example:
// Use Builder to get the widget context
Builder(
builder: (BuildContext context) {
return ElevatedButton(
onPressed: () => _onShare(context),
child: const Text('Share'),
);
},
),
// _onShare method:
final box = context.findRenderObject() as RenderBox?;
await SharePlus.instance.share(
ShareParams(
text: text,
sharePositionOrigin: box!.localToGlobal(Offset.zero) & box.size,
)
);
copied to clipboard
See the `main.dart` in the `example` for a complete example.
Migrating from `Share.share()` to `SharePlus.instance.share()` [#](#migrating-from-shareshare-to-shareplusinstanceshare)
------------------------------------------------------------------------------------------------------------------------
The static methods `Share.share()`, `Share.shareUri()` and `Share.shareXFiles()` have been deprecated in favor of the `SharePlus.instance.share(params)`.
To convert code using `Share.share()` to the new `SharePlus` class:
1. Wrap the current parameters in a `ShareParams` object.
2. Change the call to `SharePlus.instance.share()`.
e.g.
Share.share("Shared text");
Share.shareUri("http://example.com");
Share.shareXFiles(files);
copied to clipboard
Becomes:
SharePlus.instance.share(
ShareParams(text: "Shared text"),
);
SharePlus.instance.share(
ShareParams(uri: "http://example.com"),
);
SharePlus.instance.share(
ShareParams(files: files),
);
copied to clipboard
Learn more [#](#learn-more)
---------------------------
* [API Documentation](https://pub.dev/documentation/share_plus/latest/share_plus/share_plus-library.html)
[
3.69k
likes
160
points
1.48M
downloads
](/packages/share_plus/score)
### Publisher
[fluttercommunity.dev](/publishers/fluttercommunity.dev)
### Weekly Downloads
2024.06.09 - 2025.05.04
### Metadata
Flutter plugin for sharing content via the platform share UI, using the ACTION\_SEND intent on Android and UIActivityViewController on iOS.
[Homepage](https://github.com/fluttercommunity/plus_plugins)
[Repository (GitHub)](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/share_plus/share_plus)
[View/report issues](https://github.com/fluttercommunity/plus_plugins/labels/share_plus)
### Topics
[#share](/packages?q=topic%3Ashare) [#utils](/packages?q=topic%3Autils)
### Documentation
[API reference](/documentation/share_plus/latest/)
### License
BSD-3-Clause ([license](/packages/share_plus/license))
### Dependencies
[cross\_file](/packages/cross_file "^0.3.4+2"), [ffi](/packages/ffi "^2.1.2"), [file](/packages/file ">=6.1.4 <8.0.0"), [flutter](https://api.flutter.dev/), [flutter\_web\_plugins](https://api.flutter.dev/flutter/flutter_web_plugins/flutter_web_plugins-library.html), [meta](/packages/meta "^1.8.0"), [mime](/packages/mime ">=1.0.4 <3.0.0"), [share\_plus\_platform\_interface](/packages/share_plus_platform_interface "^6.0.0"), [url\_launcher\_linux](/packages/url_launcher_linux "^3.1.1"), [url\_launcher\_platform\_interface](/packages/url_launcher_platform_interface "^2.3.2"), [url\_launcher\_web](/packages/url_launcher_web "^2.3.2"), [url\_launcher\_windows](/packages/url_launcher_windows "^3.1.2"), [web](/packages/web "^1.0.0"), [win32](/packages/win32 "^5.5.3")
### More
[Packages that depend on share\_plus](/packages?q=dependency%3Ashare_plus)
{"@context":"http\\u003a\\u002f\\u002fschema.org","@type":"SoftwareSourceCode","name":"share\\u005fplus","version":"11.0.0","description":"share\\u005fplus - Flutter plugin for sharing content via the platform share UI, using the ACTION\\u005fSEND intent on Android and UIActivityViewController on iOS.","url":"https\\u003a\\u002f\\u002fpub.dev\\u002fpackages\\u002fshare\\u005fplus","dateCreated":"2020-04-20T18\\u003a02\\u003a15.748611Z","dateModified":"2025-04-22T05\\u003a19\\u003a26.240981Z","programmingLanguage":"Dart","image":"https\\u003a\\u002f\\u002fpub.dev\\u002fstatic\\u002fimg\\u002fpub-dev-icon-cover-image.png","license":"https\\u003a\\u002f\\u002fpub.dev\\u002fpackages\\u002fshare\\u005fplus\\u002flicense"} |