mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-23 09:01:10 +08:00

* chore(tslint): fix tslint config & errors * chore(tslint): enable double quotes, whitespace, and arrow-return-shorthand rules and fix errors
18 lines
580 B
TypeScript
18 lines
580 B
TypeScript
import * as stack from "tns-core-modules/ui/layouts/stack-layout";
|
|
import { unsetValue } from "tns-core-modules/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;
|
|
}
|
|
}
|