mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00

Less than 30 erros left, let's hope it still works Added lib.*.d.ts from typescript, removed lib and dom stuff, added by hand XHR, alert etc. .d.ts-es for polyfills Roll back some changes involved in separating UIEvent for dom and ios Test combined dts-es will now use lib, while internally we will not to avoid UIEvent conflict with dom stuff
27 lines
914 B
TypeScript
27 lines
914 B
TypeScript
import labelModule = require("ui/label");
|
|
import enums = require("ui/enums");
|
|
import colorModule = require("color");
|
|
import utilsModule = require("utils/utils");
|
|
|
|
export function getNativeTextAlignment(label: labelModule.Label): string {
|
|
switch (label.ios.textAlignment) {
|
|
case NSTextAlignment.Left:
|
|
return enums.TextAlignment.left;
|
|
case NSTextAlignment.Center:
|
|
return enums.TextAlignment.center;
|
|
case NSTextAlignment.Right:
|
|
return enums.TextAlignment.right;
|
|
default:
|
|
return "unexpected value";
|
|
}
|
|
}
|
|
|
|
export function getNativeBackgroundColor(label: labelModule.Label): colorModule.Color {
|
|
var layer = (<UILabel>label.ios).layer;
|
|
if (!layer || !layer.backgroundColor) {
|
|
return undefined;
|
|
}
|
|
var uiColor = UIColor.colorWithCGColor(layer.backgroundColor);
|
|
return utilsModule.ios.getColor(uiColor);
|
|
}
|