diff --git a/index.js b/index.js index 09522ca..672ad4f 100644 --- a/index.js +++ b/index.js @@ -87,6 +87,10 @@ Toast.showLongBottom = function (message) { showToast(message, "long", "bottom"); }; +Toast.showWithOptions = function (options) { + showWithOptions(options); +}; + Toast.show = function (message) { showToast(message, "short", "bottom"); };