mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
28 lines
943 B
TypeScript
28 lines
943 B
TypeScript
import * as labelModule from "tns-core-modules/ui/label";
|
|
import * as enums from "tns-core-modules/ui/enums";
|
|
import * as colorModule from "tns-core-modules/color";
|
|
import { getColor } from "../../ui-helper";
|
|
|
|
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 getColor(uiColor);
|
|
}
|