Am building a gallery App in Sencha touch. All most all the work is done. Am planning to add a share button to all the images. I have seen this functionality in many apps. When they click the image it will list all the networking apps installed in phone (Whats App, Hike, Telegram etc..). By selecting Whats App, the image will posted to whats app. But am not sure how to achieve this functionality. Is there any share plugin available with Sencha touch. Please provide some guidance to achieve this functionality. Sorry I dint have much code to share.
{
xtype:'image',
cls:'winreologosmall',
listeners: {
tap: function() {
try {
// will open share option
} catch (err) {
// catch error
}
}
}
}