Sunday, 21 June 2015

How to use toast in titanium ?

It is very simple to use in titanium
The example is given below

var toast = Titanium.UI.createNotification({
    duration: 2000,
    message: "Deleted Successfully"
});
toast.show();