share_plus_tizen 1.1.2
share_plus_tizen: ^1.1.2 copied to clipboard
Tizen implementation of the share_plus plugin
share_plus_tizen #
Deprecation Notice #
This plugin is no longer maintained by the flutter-tizen team and no further updates will be made. You might consider migrating to the tizen_app_control
plugin.
The Tizen implementation of share_plus
.
Usage #
To use this plugin, add share_plus
and share_plus_tizen
as dependencies in your pubspec.yaml file.
dependencies:
share_plus: ^3.0.5
share_plus_tizen: ^1.1.2
copied to clipboard
Then you can import share_plus
in your Dart code.
import 'package:share_plus/share_plus.dart';
Share.share('check out my website https://example.com');
copied to clipboard
For detailed usage, see https://pub.dev/packages/share_plus#example.
Supported devices #
- Galaxy Watch series (running Tizen 4.0 or later)
You can send only SMS messages using this plugin. You can't use this plugin on TV devices because no SMS or e-mail app is available on them.
Supported APIs #
- ✅
Share.share
(no optional argument supported) - ❌
Share.shareFiles
(no e-mail app available)
Required privileges #
To use this plugin, you need to declare privileges in tizen-manifest.xml
of your application.
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
copied to clipboard