Files
NativeScript/tests/app/pages/fonts-test.ts
2016-12-21 17:42:31 +02:00

18 lines
543 B
TypeScript

import * as stack from "ui/layouts/stack-layout";
import {unsetValue} from "ui/core/view";
export function buttonTap(args) {
var stackLayout = <stack.StackLayout>args.object.parent;
for (var i = 0; i < stackLayout.getChildrenCount(); i++){
var v = stackLayout.getChildAt(i);
v.style.fontFamily = unsetValue;
v.style.fontSize = unsetValue;
v.style.fontStyle = unsetValue;
v.style.fontWeight = unsetValue;
v.style.color = unsetValue;
v.style.textAlignment = unsetValue;
}
}