Difference between revisions of "Share"
From GiderosMobile
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
− | Sharing a text or an image with other apps | + | Sharing a text or an image with other apps on '''iOS''', '''Android''' and '''Windows Uwp'''. This invokes the platform default sharing dialog, allowing to save, print, send, share, etc. |
To use the '''Share''' plugin, add it to your project and call: | To use the '''Share''' plugin, add it to your project and call: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
− | + | require "Share" | |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 25: | Line 25: | ||
=== Methods === | === Methods === | ||
[[Share.new]] ''creates a new Share object''<br/><!--GIDEROSMTD:Share.new() creates a new Share object--> | [[Share.new]] ''creates a new Share object''<br/><!--GIDEROSMTD:Share.new() creates a new Share object--> | ||
− | [[Share.share]] '' | + | [[Share.share]] ''shares data''<br/><!--GIDEROSMTD:Share.new(mimeType,data) shares data--> |
− | [[Share:export]] '' | + | [[Share:export]] ''exports data''<br/><!--GIDEROSMTD:Share.export(data,mimeType,filename) exports data--> |
− | [[Share:import]] '' | + | [[Share:import]] ''imports data''<br/><!--GIDEROSMTD:Share.import(mimeType,extension) imports data--> |
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| |
Revision as of 20:52, 20 February 2025
Supported platforms:
Available since: Gideros 2020.7
Description
Sharing a text or an image with other apps on iOS, Android and Windows Uwp. This invokes the platform default sharing dialog, allowing to save, print, send, share, etc.
To use the Share plugin, add it to your project and call:
require "Share"
There are some more parameters for iOS, right click the plugin -> Properties
Example
Share = require "Share"
Share.share("text/plain", "Hello Gideros!")
MethodsShare.new creates a new Share object Share:export exports data |
EventsShare_Event.SHARE_EXPORT_RESULT Constants |