New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-toast

Package Overview
Dependencies
Maintainers
2
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-toast - npm Package Compare versions

Comparing version

to
1.4.4

8

CHANGELOG.md

@@ -0,1 +1,9 @@

<a name="1.4.4"></a>
## [1.4.4](https://github.com/TobiasHennig/nativescript-toast/compare/v1.4.3...v1.4.4) (2017-01-03)
### Feature
* **#19:** Center-align text on Android
<a name="1.4.3"></a>

@@ -2,0 +10,0 @@ ## [1.4.3](https://github.com/TobiasHennig/nativescript-toast/compare/9cf55f5...v1.4.3) (2016-12-01)

2

package.json
{
"name": "nativescript-toast",
"version": "1.4.3",
"version": "1.4.4",
"description": "A NativeScript Toast Plugin for Android and iOS apps.",

@@ -5,0 +5,0 @@ "main": "toast.js",

@@ -12,5 +12,13 @@ /*global require, exports, android*/

var d = (typeof (duration) === "string" && duration[0] === "l") ? Toast.LENGTH_LONG : Toast.LENGTH_SHORT;
return Toast.makeText(application.android.context, text, d);
var centeredText = new android.text.SpannableString(text);
centeredText.setSpan(
new android.text.style.AlignmentSpan.Standard(android.text.Layout.Alignment.ALIGN_CENTER),
0,
text.length - 1,
android.text.Spannable.SPAN_INCLUSIVE_INCLUSIVE);
return Toast.makeText(application.android.context, centeredText, d);
}
exports.makeText = makeText;