File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 0.3.2
2+
3+ * Fixed Dart 2 type error.
4+
15## 0.3.1
26
37* Simplified and upgraded Android project template to Android SDK 27.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const MethodChannel _kChannel = const MethodChannel('plugins.flutter.io/share');
1616///
1717/// May throw [PlatformException] or [FormatException]
1818/// from [MethodChannel] .
19- Future <Null > share (String text) {
19+ Future <void > share (String text) {
2020 assert (text != null && text.isNotEmpty);
2121 return _kChannel.invokeMethod ('share' , text);
2222}
Original file line number Diff line number Diff line change 11name : share
22description : Flutter plugin for sharing content via the platform share UI, using
33 the ACTION_SEND intent on Android and UIActivityViewController on iOS.
4- version : 0.3.1
4+ version : 0.3.2
55author : Flutter Team <flutter-dev@googlegroups.com>
66homepage : https://github.com/flutter/plugins/tree/master/packages/share
77
You can’t perform that action at this time.
0 commit comments