The Tizen implementation of share_plus
.
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.1
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');
For detailed usage, see https://pub.dev/packages/share_plus#example.
- 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.
-
Share.share
(no optional argument supported) -
Share.shareFiles
(no e-mail app available)
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>